chore: stricter tsconfig.json

This commit is contained in:
Théo LUDWIG 2024-08-09 22:52:02 +01:00
parent d020552af5
commit 94af8462d3
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B

View File

@ -1,16 +1,21 @@
{
"compilerOptions": {
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"verbatimModuleSyntax": true,
"isolatedModules": true,
"esModuleInterop": true,
"skipLibCheck": true,