2017-05-14 01:40:33 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-05-18 21:20:26 +03:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2017-12-20 21:35:03 +03:00
|
|
|
"outDir": "dist",
|
2021-04-15 03:38:19 +03:00
|
|
|
"target": "es2019",
|
2017-08-14 17:17:16 +03:00
|
|
|
"declaration": true,
|
2017-05-14 01:40:33 +03:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"noEmitOnError": false,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
2023-05-18 21:20:26 +03:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2017-05-14 01:40:33 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
],
|
|
|
|
"include": [
|
2023-05-18 21:20:26 +03:00
|
|
|
"src",
|
2017-05-14 01:40:33 +03:00
|
|
|
]
|
|
|
|
}
|