Stuck with Ziffers compiler errors

This commit is contained in:
2024-04-20 12:44:58 +02:00
parent 0d2f7046c9
commit 7f48b94ffa
7 changed files with 68 additions and 60 deletions

View File

@ -8,7 +8,6 @@
"DOM.Iterable"
],
"skipLibCheck": true,
// Strict mode (9)
"strict": true,
"alwaysStrict": true,
"noImplicitAny": true,
@ -32,16 +31,19 @@
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"maxNodeModuleJsDepth": 0,
"noEmit": true,
// Others (5)
// Others
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": true,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"src",
"src/**/*",
"../definitions/"
],
"exclude": [
"node_modules/**/*",
]
}