2018-07-30 21:58:49 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-02-03 13:54:12 +01:00
|
|
|
"moduleResolution": "node",
|
2020-02-03 10:50:19 +02:00
|
|
|
"module": "es2015",
|
2019-12-11 22:40:26 +09:00
|
|
|
"target": "es2018",
|
2018-07-30 21:58:49 +03:00
|
|
|
"outDir": "out",
|
2019-12-30 02:22:52 +01:00
|
|
|
"lib": [
|
2019-12-31 03:33:00 +01:00
|
|
|
"es2019"
|
2019-12-30 02:22:52 +01:00
|
|
|
],
|
2018-07-30 21:58:49 +03:00
|
|
|
"sourceMap": true,
|
2018-08-27 22:52:43 +03:00
|
|
|
"rootDir": "src",
|
2019-06-29 18:00:22 +10:00
|
|
|
"strict": true,
|
2019-12-12 00:41:16 +09:00
|
|
|
"noUnusedLocals": true,
|
2019-12-12 00:49:54 +09:00
|
|
|
"noUnusedParameters": true,
|
2019-12-12 00:51:28 +09:00
|
|
|
"noImplicitReturns": true,
|
2019-12-30 23:30:35 +01:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-02-01 13:39:04 +01:00
|
|
|
"newLine": "LF",
|
|
|
|
"esModuleInterop": true,
|
2020-02-01 23:11:39 +02:00
|
|
|
"importHelpers": true
|
2018-07-30 21:58:49 +03:00
|
|
|
},
|
2019-12-30 02:22:52 +01:00
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
2018-08-11 01:04:09 +03:00
|
|
|
}
|