2015-11-13 21:39:38 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-11-04 03:19:54 +08:00
|
|
|
"target": "es2022",
|
2022-11-10 22:05:47 +08:00
|
|
|
"lib": [
|
|
|
|
"ES2020"
|
|
|
|
],
|
2015-11-13 21:39:38 +08:00
|
|
|
"module": "commonjs",
|
2022-06-22 03:00:43 +08:00
|
|
|
"alwaysStrict": true,
|
2015-11-13 21:39:38 +08:00
|
|
|
"removeComments": false,
|
|
|
|
"preserveConstEnums": true,
|
2023-11-22 21:05:46 +08:00
|
|
|
"sourceMap": true,
|
2018-07-06 21:13:44 +08:00
|
|
|
"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,
|
2021-07-09 05:27:39 +08:00
|
|
|
"exactOptionalPropertyTypes": false,
|
2021-06-08 06:36:16 +08:00
|
|
|
"useUnknownInCatchVariables": false,
|
2018-10-04 06:52:36 +08:00
|
|
|
"noUnusedLocals": true,
|
2020-07-31 12:12:35 +08:00
|
|
|
"noUnusedParameters": true,
|
2022-03-01 07:35:27 +08:00
|
|
|
"newLine": "lf",
|
|
|
|
"noEmit": true
|
2017-05-09 06:41:38 +08:00
|
|
|
},
|
2018-10-16 08:22:06 +08:00
|
|
|
"include": [
|
2022-03-01 07:35:27 +08:00
|
|
|
"**/*.ts",
|
|
|
|
"**/*.js"
|
2018-10-16 08:22:06 +08:00
|
|
|
],
|
2017-05-09 06:41:38 +08:00
|
|
|
"exclude": [
|
2017-05-15 21:59:14 +08:00
|
|
|
"node_modules/**"
|
2017-05-09 06:41:38 +08:00
|
|
|
]
|
2019-04-09 13:21:46 +08:00
|
|
|
}
|