Assist_Design/apps/bff/tsconfig.build.json

22 lines
520 B
JSON
Raw Normal View History

{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": false,
"composite": true,
"outDir": "./dist",
"rootDir": "./src",
"declaration": true,
"sourceMap": true,
"removeComments": true,
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo",
"plugins": [
{
"transform": "typescript-transform-paths"
}
]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts"],
"references": [{ "path": "../../packages/domain" }]
}