tablejohn/tsconfig.json
2024-05-11 18:32:36 +02:00

25 lines
602 B
JSON

{
// See also https://aka.ms/tsconfig
"include": ["scripts/**/*"],
"compilerOptions": {
"target": "ES2022", // Should be fine according to caniuse.com
"module": "ES2015",
"rootDir": "scripts",
"outDir": "target/static",
"allowJs": true,
// Misc
// TODO Source maps?
"forceConsistentCasingInFileNames": true,
"newLine": "lf",
"removeComments": true,
// Type checking
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"strict": true
}
}