-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
68 lines (62 loc) · 1.71 KB
/
tsconfig.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"compileOnSave": true,
"compilerOptions": {
// Project Options
"target": "es2021",
"module": "commonjs",
"lib": [
"dom",
"es5",
"es6",
"es7",
"es2017",
"es2018",
"es2019",
"es2020",
"es2021"
],
"outDir": "./build/app",
"sourceMap": true,
// Type Checking
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
// Modules
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": false,
"moduleResolution": "node",
"resolveJsonModule": true,
// Experimental Options
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
// JS
"allowJs": false,
"checkJs": false
},
// File Inclusions
"include": ["src/**/*", "src/**/*.json"],
"exclude": ["**/*.test.ts"],
// Local developer settings
"ts-node": {
"compilerOptions": {
"allowUnusedLabels": true,
"noUnusedLocals": false,
"noUnusedParameters": false
}
}
}