-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (36 loc) · 1.04 KB
/
tsconfig.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"compileOnSave": false,
"compilerOptions": {
"strict": true,
"alwaysStrict": true,
"noUncheckedIndexedAccess": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
"allowUnusedLabels": false,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": "./",
"outDir": "./dist",
"sourceMap": false,
"declaration": true,
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"experimentalDecorators": true,
"isolatedModules": true,
"importHelpers": true,
"typeRoots": ["node_modules/@types"],
"lib": ["ES2022", "dom"],
"skipLibCheck": true,
"importsNotUsedAsValues": "remove"
},
"include": ["src/**/*.ts", "src/**/*.d.ts"]
}