The Foundry pf2e dev clone under prisma/data/foundry-pf2e was already excluded from tsconfig.json (d421aad), but nest start --watch and nest build use tsconfig.build.json, which overrides exclude and globs the whole project. With the clone present this pulled ~39k .ts files into compilation (10,716 errors) and prevented the backend dev server from starting. Mirror the exclude in the build config.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
5 lines
125 B
JSON
5 lines
125 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"exclude": ["node_modules", "test", "dist", "**/*spec.ts", "prisma/data/foundry-pf2e"]
|
|
}
|