Skip to content

Commit 2e3d855

Browse files
committed
add strict compiler options
1 parent c7093bb commit 2e3d855

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tsconfig.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
"noUnusedLocals": true,
1414
"noImplicitReturns": true,
1515
"noImplicitOverride": true,
16+
"noFallthroughCasesInSwitch": true,
17+
"strictNullChecks": true,
18+
"strictBindCallApply": true,
19+
"strictFunctionTypes": true,
20+
"strictPropertyInitialization": true,
1621
"moduleResolution": "Node16",
1722
"esModuleInterop": true,
1823
"skipLibCheck": true,

0 commit comments

Comments
 (0)