Some checks failed
Deploy API Server / build-and-deploy (push) Failing after 25s
- tsconfig.build.json: exclude scripts/ (avoids Prisma delegate mismatch) - tsconfig.json: add exclude for scripts/ and dist/ - ai-job-artifact.repository.ts: cast metadata to any (JsonValue compat) - ai-job-snapshot.repository.ts: cast data to any (JsonValue compat) - ai-job-artifact.repository.spec.ts: remove unused @ts-expect-error - snapshot-builder.service.spec.ts: cast JSON fields to any Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
727 B
JSON
27 lines
727 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"resolvePackageJsonExports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2023",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": false,
|
|
"strictBindCallApply": false,
|
|
"noFallthroughCasesInSwitch": false
|
|
},
|
|
"exclude": ["node_modules", "scripts", "dist"]
|
|
}
|