Assist_Design/apps/bff/tsconfig.build.json

24 lines
666 B
JSON
Raw Normal View History

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"composite": true,
"noEmit": false,
"incremental": true,
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo",
"outDir": "./dist",
"rootDir": "./src",
"sourceMap": true,
"declaration": true,
"removeComments": true,
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
"@customer-portal/shared": ["../../packages/shared/dist/index"],
"@customer-portal/shared/*": ["../../packages/shared/dist/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts"],
"references": [{ "path": "../../packages/shared" }]
}