2017-03-29 01:36:29 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"removeComments": false,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2021-08-09 05:20:20 +03:00
|
|
|
"esModuleInterop": true,
|
2017-03-29 01:36:29 +03:00
|
|
|
"pretty": true,
|
2021-08-09 05:20:20 +03:00
|
|
|
"target": "ES2019",
|
2017-03-29 01:36:29 +03:00
|
|
|
"outDir": "lib"
|
|
|
|
},
|
|
|
|
"formatCodeOptions": {
|
|
|
|
"indentSize": 2,
|
|
|
|
"tabSize": 2
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2023-04-13 02:18:19 +03:00
|
|
|
"lib",
|
|
|
|
"test"
|
2017-03-29 01:36:29 +03:00
|
|
|
]
|
2020-09-07 06:33:39 +03:00
|
|
|
}
|