Files
domain-driven-hexagon/tsconfig.json
2020-11-29 17:04:56 +01:00

21 lines
472 B
JSON

{
"compilerOptions": {
"strict": true,
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2019",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"paths": {
"@modules/*": ["src/modules/*"],
"@config/*": ["src/infrastructure/configs/*"]
}
}
}