-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathtsconfig.eslint.json
54 lines (54 loc) · 1.41 KB
/
tsconfig.eslint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"exclude": [
"**/*.test.ts",
"**/*.stub.ts",
"./node_modules",
"**/__tests__/*",
"./dist",
"./**/dist",
"./**/**/dist"
],
"include": [
"00_Base/**/*.ts",
"00_Base/**/*.json",
"01_Data/**/*.ts",
"01_Data/**/*.json",
"02_Util/**/*.ts",
"02_Util/**/*.json",
"03_Modules/Certificates/**/*.ts",
"03_Modules/Certificates/**/*.json",
"03_Modules/Configuration/**/*.ts",
"03_Modules/Configuration/**/*.json",
"03_Modules/EVDriver/**/*.ts",
"03_Modules/EVDriver/**/*.json",
"03_Modules/Monitoring/**/*.ts",
"03_Modules/Monitoring/**/*.json",
"03_Modules/OcppRouter/**/*.ts",
"03_Modules/OcppRouter/**/*.json",
"03_Modules/Reporting/**/*.ts",
"03_Modules/Reporting/**/*.json",
"03_Modules/SmartCharging/**/*.ts",
"03_Modules/SmartCharging/**/*.json",
"03_Modules/Tenant/**/*.ts",
"03_Modules/Tenant/**/*.json",
"03_Modules/Transactions/**/*.ts",
"03_Modules/Transactions/**/*.json",
"Server/**/*.ts",
"Server/**/*.json",
"./db.sync.ts",
"jest.config.ts"
],
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"sourceMap": true
}
}