Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit a7fd544

Browse files
committed
Stricter tsconfig
1 parent 16d12d3 commit a7fd544

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

tsconfig.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
{
22
"compilerOptions": {
3+
"allowSyntheticDefaultImports": true,
4+
"forceConsistentCasingInFileNames": true,
35
"module": "es6",
46
"moduleResolution": "node",
5-
"verbatimModuleSyntax": true,
6-
"allowSyntheticDefaultImports": true,
77
"resolveJsonModule": true,
8-
"forceConsistentCasingInFileNames": true,
8+
"skipLibCheck": true,
9+
"verbatimModuleSyntax": true,
10+
11+
"allowUnreachableCode": false,
12+
"allowUnusedLabels": false,
13+
"exactOptionalPropertyTypes": true,
914
"noFallthroughCasesInSwitch": true,
15+
"noImplicitOverride": true,
1016
"noImplicitReturns": true,
17+
"noPropertyAccessFromIndexSignature": true,
1118
"noUnusedLocals": true,
1219
"noUnusedParameters": true,
13-
"skipLibCheck": true,
1420
"strict": true
1521
}
1622
}

0 commit comments

Comments
 (0)