-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.eslint.json
53 lines (53 loc) · 1.37 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
{
"exclude": [
"**/*.test.ts",
"**/*.stub.ts",
"./node_modules",
"**/__tests__/*",
"./dist",
"./**/dist",
"./**/**/dist"
],
"include": [
"00_Base/**/*.ts",
"00_Base/**/*.json",
"03_Modules/Commands/**/*.ts",
"03_Modules/Commands/**/*.json",
"03_Modules/Credentials/**/*.ts",
"03_Modules/Credentials/**/*.json",
"03_Modules/Versions/**/*.ts",
"03_Modules/Versions/**/*.json",
"03_Modules/ChargingProfiles/**/*.ts",
"03_Modules/ChargingProfiles/**/*.json",
"03_Modules/Locations/**/*.ts",
"03_Modules/Locations/**/*.json",
"03_Modules/Sessions/**/*.ts",
"03_Modules/Sessions/**/*.json",
"03_Modules/Tariffs/**/*.ts",
"03_Modules/Tariffs/**/*.json",
"03_Modules/Cdrs/**/*.ts",
"03_Modules/Cdrs/**/*.json",
"03_Modules/Tokens/**/*.ts",
"03_Modules/Tokens/**/*.json",
"mock-client/**/*.ts",
"mock-client/**/*.json",
"seeders/**/*.ts",
"seeders/**/*.json",
"migrations/**/*.ts",
"migrations/**/*.json",
"./db.sync.ts"
],
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"sourceMap": true
}
}