-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
49 lines (39 loc) · 928 Bytes
/
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
{
"compilerOptions": {
"alwaysStrict": true,
"incremental": true,
"target": "ES2020",
"module": "ES2020",
"lib": ["ESNext"],
"esModuleInterop": true,
"isolatedModules": false,
"skipLibCheck": true,
"noEmitOnError": true,
"noUnusedParameters": true,
"strict": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"removeComments": false,
"preserveConstEnums": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": true,
"declarationMap": true,
"diagnostics": true,
"pretty": true,
"sourceMap": true,
"outDir": "./lib"
},
"compileOnSave": true,
"include": [
"src/*.ts"
],
"exclude": [
"node_modules"
]
}