vscode/build/tsconfig.json

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

33 lines
718 B
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"compilerOptions": {
"target": "es2022",
"lib": [
"ES2020"
],
2015-11-13 13:39:38 +00:00
"module": "commonjs",
"alwaysStrict": true,
2015-11-13 13:39:38 +00:00
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"resolveJsonModule": true,
2018-02-01 13:39:12 +00:00
// enable JavaScript type checking for the language service
2019-04-09 05:21:46 +00:00
// use the tsconfig.build.json for compiling which disable JavaScript
2018-02-01 13:39:12 +00:00
// type checking so that JavaScript file are not transpiled
"allowJs": true,
2018-10-03 22:49:52 +00:00
"strict": true,
"exactOptionalPropertyTypes": false,
2021-06-07 22:36:16 +00:00
"useUnknownInCatchVariables": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"newLine": "lf",
"noEmit": true
},
"include": [
"**/*.ts",
"**/*.js"
],
"exclude": [
2017-05-15 13:59:14 +00:00
"node_modules/**"
]
2019-04-09 05:21:46 +00:00
}