-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.json
More file actions
38 lines (32 loc) · 897 Bytes
/
Copy pathbase.json
File metadata and controls
38 lines (32 loc) · 897 Bytes
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
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"compilerOptions": {
// Type Checking
"strict": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
// Language and Environment
"target": "ESNext",
"moduleDetection": "force",
// Modules
"allowImportingTsExtensions": true,
"noUncheckedSideEffectImports": true,
"resolveJsonModule": true,
"types": ["node"],
// Interop Constraints
"verbatimModuleSyntax": true,
"erasableSyntaxOnly": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
// Completeness
"skipLibCheck": true,
// JavaScript Support
"allowJs": true,
// Emit
"noEmit": true
}
}