33 lines
881 B
JSON
33 lines
881 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "commonjs",
|
||
|
|
"declaration": true,
|
||
|
|
"removeComments": true,
|
||
|
|
"emitDecoratorMetadata": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"target": "ES2021",
|
||
|
|
"sourceMap": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"baseUrl": "./",
|
||
|
|
"incremental": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"strict": false,
|
||
|
|
"strictNullChecks": false,
|
||
|
|
"strictPropertyInitialization": false,
|
||
|
|
"noImplicitAny": false,
|
||
|
|
"strictBindCallApply": false,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["src/*"],
|
||
|
|
"@common/*": ["src/common/*"],
|
||
|
|
"@config/*": ["src/config/*"],
|
||
|
|
"@modules/*": ["src/modules/*"],
|
||
|
|
"@database/*": ["src/database/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src/**/*"],
|
||
|
|
"exclude": ["node_modules", "dist", "test"]
|
||
|
|
}
|