-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
51 lines (44 loc) · 1.52 KB
/
tsconfig.base.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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"baseUrl": "./",
"downlevelIteration": true,
"isolatedModules": true,
"lib": ["ES2023"],
"module": "ESNext",
"target": "ESNext",
"tsBuildInfoFile": ".tsbuildinfo",
"moduleDetection": "force",
"verbatimModuleSyntax": true,
"strict": true,
"alwaysStrict": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"stripInternal": true,
"strictPropertyInitialization": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": false,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": false,
"useUnknownInCatchVariables": true,
"esModuleInterop": true,
"declaration": true,
"allowJs": true,
"removeComments": true,
"incremental": true,
"inlineSources": false,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"checkJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": ["dist/**/*", "node_modules/**/*", "build/**/*", "scripts/**/*", "verify-node-version.cjs", "examples/**", "**/coverage/**"]
}