- 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.
14 lines
318 B
JSON
14 lines
318 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/nest-cli",
|
|
"collection": "@nestjs/schematics",
|
|
"sourceRoot": "src",
|
|
"entryFile": "main",
|
|
"compilerOptions": {
|
|
"deleteOutDir": false,
|
|
"watchAssets": true,
|
|
"assets": ["**/*.prisma"],
|
|
"tsConfigPath": "./tsconfig.build.json",
|
|
"builder": "tsc"
|
|
}
|
|
}
|