-
Notifications
You must be signed in to change notification settings - Fork 7
/
tsconfig.json
52 lines (52 loc) · 1.51 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
{
"compilerOptions": {
"allowJs": true,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": true,
"allowUnusedLabels": true,
"alwaysStrict": false,
"charset": "utf8",
"checkJs": false,
"downlevelIteration": false,
"emitDecoratorMetadata": false,
"esModuleInterop": false,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": false,
"importsNotUsedAsValues": "remove",
"disableSolutionSearching": true,
"lib": ["ES2020", "DOM"],
"useDefineForClassFields": false,
"target": "ES2020",
"suppressImplicitAnyIndexErrors": true,
"suppressExcessPropertyErrors": true,
"strictPropertyInitialization": false,
"strictNullChecks": false,
"stripInternal": true,
"strictFunctionTypes": false,
"strictBindCallApply": false,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true,
"preserveWatchOutput": true,
"pretty": true,
"preserveConstEnums": false,
"noUnusedParameters": false,
"noUnusedLocals": false,
"noStrictGenericChecks": true,
"noImplicitUseStrict": true,
"noImplicitThis": true,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": false,
"noEmitOnError": false,
"newLine": "lf",
"allowUmdGlobalAccess": true,
"module": "esnext",
"moduleResolution": "node"
},
"compileOnSave": false,
"typeAcquisition": { "enable": true },
"exclude": ["dist"]
}