tvl-depot/users/Profpatsch/declib/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
697 B
JSON
Raw Normal View History

{
"compilerOptions": {
"strict": true,
"module": "NodeNext",
"sourceMap": true,
"outDir": "output",
"target": "ES6",
"lib": [],
"typeRoots": ["node_modules/@types", "shims/@types"],
"moduleResolution": "NodeNext",
// importHelpers & downlevelIteration will reduce the generated javascript for new language features.
// `importHelpers` requires the `tslib` dependency.
// "downlevelIteration": true,
// "importHelpers": true
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
},
"files": ["index.ts"]
}