2018-07-30 18:58:49 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-02-03 13:57:14 +00:00
|
|
|
"module": "commonjs",
|
2020-03-18 18:43:25 +00:00
|
|
|
"target": "es2019",
|
2018-07-30 18:58:49 +00:00
|
|
|
"outDir": "out",
|
2019-12-30 01:22:52 +00:00
|
|
|
"lib": [
|
2019-12-31 02:33:00 +00:00
|
|
|
"es2019"
|
2019-12-30 01:22:52 +00:00
|
|
|
],
|
2020-02-08 02:22:44 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2018-07-30 18:58:49 +00:00
|
|
|
"sourceMap": true,
|
2018-08-27 19:52:43 +00:00
|
|
|
"rootDir": "src",
|
2019-06-29 08:00:22 +00:00
|
|
|
"strict": true,
|
2019-12-11 15:41:16 +00:00
|
|
|
"noUnusedLocals": true,
|
2019-12-11 15:49:54 +00:00
|
|
|
"noUnusedParameters": true,
|
2019-12-11 15:51:28 +00:00
|
|
|
"noImplicitReturns": true,
|
2019-12-30 22:30:35 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-02-03 15:37:12 +00:00
|
|
|
"newLine": "LF"
|
2018-07-30 18:58:49 +00:00
|
|
|
},
|
2019-12-30 01:22:52 +00:00
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
2018-08-10 22:04:09 +00:00
|
|
|
}
|