-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (38 loc) · 1.37 KB
/
tsconfig.json
File metadata and controls
43 lines (38 loc) · 1.37 KB
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
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"compilerOptions": {
// https://www.typescriptlang.org/tsconfig/#Type_Checking_6248
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"useUnknownInCatchVariables": false,
// https://www.typescriptlang.org/tsconfig/#Modules_6244
"allowArbitraryExtensions": false,
"allowImportingTsExtensions": false,
"allowUmdGlobalAccess": false,
"module": "esnext",
"moduleResolution": "bundler",
"noUncheckedSideEffectImports": true,
"types": ["node"],
// https://www.typescriptlang.org/tsconfig/#Emit_6246
"noEmit": true,
// https://www.typescriptlang.org/tsconfig/#Interop_Constraints_6252
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
// https://www.typescriptlang.org/tsconfig/#Language_and_Environment_6254
"lib": ["ESNext"],
"target": "esnext",
"useDefineForClassFields": true,
// https://www.typescriptlang.org/tsconfig/#Completeness_6257
"skipLibCheck": true
},
"include": ["src", "test/**/*.test.ts"]
}