-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (22 loc) · 603 Bytes
/
tsconfig.json
File metadata and controls
24 lines (22 loc) · 603 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
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "Node",
"allowJs": false,
"strict": true,
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"declaration": true,
"isolatedModules": true,
// https://www.typescriptlang.org/tsconfig#Type_Checking_6248
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true
}
}