- 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.
25 lines
666 B
JSON
25 lines
666 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"lib": ["ES2024"],
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictBindCallApply": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false
|
|
}
|
|
}
|