vscode/build/tsconfig.json

33 lines
718 B
JSON
Raw Permalink Normal View History

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