-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
34 lines (34 loc) · 974 Bytes
/
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
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Strict",
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": false,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"skipLibCheck": true,
"strictNullChecks": true,
"noImplicitAny": false,
"strictBindCallApply": false,
"noFallthroughCasesInSwitch": false,
"noUncheckedIndexedAccess": true,
"composite": false,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strictPropertyInitialization": false,
"noImplicitOverride": true,
"inlineSources": false,
"isolatedModules": true,
"moduleResolution": "node",
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"strict": true,
"resolveJsonModule": true,
"types": ["vitest/globals"]
},
"exclude": ["node_modules"]
}