2017-11-03 22:07:04 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2020-07-08 08:41:20 +00:00
|
|
|
"esModuleInterop": true,
|
2020-10-19 22:55:14 +00:00
|
|
|
"resolveJsonModule": true,
|
2020-07-08 15:29:10 +00:00
|
|
|
"importHelpers": true,
|
2022-03-03 23:45:39 +00:00
|
|
|
"target": "ES2021",
|
2019-10-28 20:48:02 +00:00
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
2017-11-03 22:07:04 +00:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"sourceMap": false,
|
2018-06-22 13:37:49 +00:00
|
|
|
"noEmit": true,
|
2019-04-17 14:01:09 +00:00
|
|
|
"strict": true
|
2017-11-03 22:07:04 +00:00
|
|
|
},
|
|
|
|
"compileOnSave": false
|
|
|
|
}
|