2022-12-01 17:58:08 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-06-17 14:42:02 +03:00
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"esModuleInterop": true,
|
2022-12-01 17:58:08 +03:00
|
|
|
"target": "es2017",
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
2023-06-16 11:38:11 +03:00
|
|
|
"rootDir": "./",
|
2022-12-01 17:58:08 +03:00
|
|
|
"baseUrl": "./",
|
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
2023-04-24 16:00:37 +03:00
|
|
|
"strictNullChecks": true,
|
2023-06-17 14:42:02 +03:00
|
|
|
"alwaysStrict": true,
|
2022-12-01 17:58:08 +03:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"strictBindCallApply": false,
|
|
|
|
"forceConsistentCasingInFileNames": false,
|
2023-04-24 16:00:37 +03:00
|
|
|
"noFallthroughCasesInSwitch": false,
|
2023-06-17 14:42:02 +03:00
|
|
|
"resolveJsonModule": true
|
2022-12-01 17:58:08 +03:00
|
|
|
}
|
|
|
|
}
|