tvl-depot/users/Profpatsch/declib/tsconfig.json
Profpatsch 80c683c9ec feat(declib): initial mastodon bot experiment
No default.nix yet, just for development.

Change-Id: Ib8bd0057d697fecd083d5961e635c770b7638e08
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10803
Reviewed-by: Profpatsch <mail@profpatsch.de>
Tested-by: BuildkiteCI
2024-02-11 16:38:16 +00:00

25 lines
697 B
JSON

{
"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"]
}