- 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.
18 lines
424 B
JSON
18 lines
424 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo",
|
|
"outDir": "./dist",
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"removeComments": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts"]
|
|
} |