tablejohn/tsconfig.json
2023-08-14 17:45:33 +02:00

24 lines
560 B
JSON

{ // See also https://aka.ms/tsconfig
"include": [ "scripts/**/*" ],
"compilerOptions": {
"target": "ES2015",
"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,
}
}