39 lines
889 B
JSON
39 lines
889 B
JSON
{
|
|
"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",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"common/*": [
|
|
"./src/common/*"
|
|
],
|
|
"generated/*": [
|
|
"./src/generated/*"
|
|
],
|
|
"modules/*": [
|
|
"./src/modules/*"
|
|
]
|
|
},
|
|
"removeComments": true,
|
|
"resolvePackageJsonExports": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strictBindCallApply": false,
|
|
"strictNullChecks": true,
|
|
"target": "ES2023"
|
|
}
|
|
}
|