25 lines
621 B
JSON
25 lines
621 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictPropertyInitialization": false,
|
|
"target": "es2019",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"paths": {
|
|
"@src/*": ["src/*"],
|
|
"@modules/*": ["src/modules/*"],
|
|
"@config/*": ["src/infrastructure/configs/*"],
|
|
"@exceptions": ["src/libs/exceptions"],
|
|
"@libs/*": ["src/libs/*"]
|
|
}
|
|
}
|
|
}
|