rust/editors/code/tsconfig.json
Chayim Refael Friedman 36bdb5c94d Type-check TS on CI and also turn off the strict setting useUnknownInCatchVariables
We don't follow it and I found that turning it on will have little benefit.
2021-11-04 01:23:45 +02:00

28 lines
584 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es2019",
"outDir": "out",
"lib": [
"es2019"
],
"sourceMap": true,
"rootDir": ".",
"strict": true,
"useUnknownInCatchVariables": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"newLine": "LF"
},
"exclude": [
"node_modules",
".vscode-test"
],
"include": [
"src",
"tests"
]
}