-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
62 lines (62 loc) · 1.6 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
{
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"charset": "UTF-8",
"strict": true,
"alwaysStrict": true,
"newLine": "lf",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"importsNotUsedAsValues": "error",
"allowJs": true,
"checkJs": false,
"pretty": true,
"strictNullChecks": true,
"preserveConstEnums": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
"noEmit": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"declaration": false,
"sourceMap": false
},
"include": ["."],
"exclude": [
"**/node_modules/**",
"**/.circleci/**",
"**/.github/**",
"**/.husky/**",
"**/.yarn/**",
"**/.stryker-tmp/**",
"**/stats/**",
"**/docs/**",
"**/documentations/**",
"**/reports/**",
"**/coverage/**",
"**/build/**",
"**/dist/**",
"**/lib/**"
]
}