2021-07-08 05:40:27 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-02-25 06:52:50 +00:00
|
|
|
"moduleResolution": "node",
|
2025-08-03 07:09:18 +00:00
|
|
|
"types": [
|
|
|
|
|
"node",
|
|
|
|
|
"rxjs"
|
|
|
|
|
],
|
2024-12-10 04:44:38 +00:00
|
|
|
"resolveJsonModule": true,
|
2021-07-08 05:40:27 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-07-17 14:17:28 +00:00
|
|
|
"target": "es2019",
|
2021-07-23 05:32:49 +00:00
|
|
|
"allowJs": true,
|
2021-07-08 05:40:27 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"baseUrl": "./",
|
2021-07-19 11:30:40 +00:00
|
|
|
"incremental": true,
|
2025-08-03 07:09:18 +00:00
|
|
|
"skipLibCheck": true,
|
2021-07-19 11:30:40 +00:00
|
|
|
"paths": {
|
2025-08-03 07:09:18 +00:00
|
|
|
"@ee/*": [
|
|
|
|
|
"ee/*"
|
|
|
|
|
],
|
|
|
|
|
"@entities/*": [
|
|
|
|
|
"src/entities/*"
|
|
|
|
|
],
|
|
|
|
|
"@dto/*": [
|
|
|
|
|
"src/dto/*"
|
|
|
|
|
],
|
|
|
|
|
"@modules/*": [
|
|
|
|
|
"src/modules/*"
|
|
|
|
|
],
|
|
|
|
|
"@helpers/*": [
|
|
|
|
|
"src/helpers/*"
|
|
|
|
|
],
|
2022-01-27 09:38:32 +00:00
|
|
|
},
|
|
|
|
|
},
|
2025-02-25 06:52:50 +00:00
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist",
|
|
|
|
|
]
|
2025-08-03 07:09:18 +00:00
|
|
|
}
|