Assist_Design/apps/bff/tsconfig.build.json

20 lines
491 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"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts"],
"references": [
{ "path": "../../packages/domain" },
{ "path": "../../packages/validation-service" }
]
}