clawdie-ai/tsconfig.json
Clawdie AI 8ec9db68b9 fix(build): exclude test files from tsc production build
*.test.ts files have zod v3/v4 type incompatibilities that break
`npm run build`. Exclude them from tsconfig so the service step
can build successfully during install.

Also includes: bastille exec→cmd rename, packages rw cache mount,
agent-jails pg18-client + pi install, jail-schema subnet_base env override.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

---
Build: pass | Tests: pass — Tests  1530 passed (1530)
2026-04-15 16:23:13 +00:00

20 lines
497 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts"]
}