-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.json
33 lines (33 loc) · 947 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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"target": "es2019",
"lib": ["es2020"],
"newLine": "LF",
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"strict": true,
"strictNullChecks": false,
"sourceMap": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"importHelpers": true,
"downlevelIteration": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noEmitOnError": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": false,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"typeRoots": ["node_modules/@types", "typings"]
},
"exclude": ["node_modules", "dist", "**/.*/"]
}