We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ecea1a commit 2b27c01Copy full SHA for 2b27c01
tsconfig.json
@@ -13,6 +13,18 @@
13
"noEmit": true,
14
"resolveJsonModule": true,
15
"module": "es2022",
16
- "moduleResolution": "node"
+ "moduleResolution": "node",
17
+
18
+ /* New checks being tried out */
19
+ "exactOptionalPropertyTypes": true,
20
+ "noFallthroughCasesInSwitch": true,
21
+ "noImplicitOverride": true,
22
+ "noPropertyAccessFromIndexSignature": true,
23
+ "noUncheckedIndexedAccess": true,
24
25
+ /* Additional checks */
26
+ "forceConsistentCasingInFileNames": true,
27
+ "noUnusedLocals": true,
28
+ "noUnusedParameters": true
29
}
30
0 commit comments