Files
domain-driven-hexagon/tsconfig.json
2022-10-10 17:24:43 +02:00

31 lines
797 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,
"skipLibCheck": true,
"strictNullChecks": true,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"paths": {
"@src/*": ["src/*"],
"@modules/*": ["src/modules/*"],
"@config/*": ["src/configs/*"],
"@libs/*": ["src/libs/*"],
"@tests/*": ["tests/*"]
}
}
}