Assist_Design/apps/bff/tsconfig.json
T. Narantuya 67c763016d Update TypeScript configurations and build process for BFF module
- Set entry file in nest-cli.json and disabled output directory deletion.
- Updated tsconfig.build.json to extend from tsconfig.base.json and refined compiler options.
- Modified tsconfig.json to extend from tsconfig.base.json and removed unnecessary overrides.
- Adjusted manage.sh script to build BFF using TypeScript compiler directly.
2025-08-30 17:11:10 +09:00

13 lines
263 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"baseUrl": "./",
"removeComments": true,
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src/**/*", "test/**/*"],
"exclude": ["node_modules", "dist"]
}