2025-12-04 21:05:57 +03:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"module": "nodenext",
|
|
|
|
|
"moduleResolution": "nodenext",
|
|
|
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"outDir": "./dist",
|
2026-03-07 11:25:11 +03:30
|
|
|
"paths": {
|
|
|
|
|
"@/*": [
|
|
|
|
|
"./src/*"
|
|
|
|
|
],
|
|
|
|
|
"common/*": [
|
|
|
|
|
"./src/common/*"
|
|
|
|
|
],
|
|
|
|
|
"generated/*": [
|
|
|
|
|
"./src/generated/*"
|
|
|
|
|
],
|
|
|
|
|
"modules/*": [
|
|
|
|
|
"./src/modules/*"
|
|
|
|
|
]
|
|
|
|
|
},
|
2025-12-04 21:05:57 +03:30
|
|
|
"removeComments": true,
|
|
|
|
|
"resolvePackageJsonExports": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"strictBindCallApply": false,
|
|
|
|
|
"strictNullChecks": true,
|
2026-04-22 21:55:40 +03:30
|
|
|
"strictPropertyInitialization": false,
|
2025-12-04 21:05:57 +03:30
|
|
|
"target": "ES2023"
|
|
|
|
|
}
|
|
|
|
|
}
|