Some checks failed
Deploy API Server / build-and-deploy (push) Failing after 18s
The NestJS build was outputting to dist/src/main.js instead of dist/main.js due to TypeScript's automatic rootDir calculation. Explicit rootDir: "src" ensures the output is always at dist/main.js. Also remove the test-run debugging step from CI. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
8 lines
146 B
JSON
8 lines
146 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src"
|
|
},
|
|
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
|
|
}
|