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