From 2ee93fa215b37b134caab5b9e64ddb90cd4d48b6 Mon Sep 17 00:00:00 2001 From: ZeasyAlex Date: Mon, 8 Jun 2026 10:43:04 +0200 Subject: [PATCH] fix(01-03): exclude foundry-pf2e clone from build tsconfig 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) --- server/tsconfig.build.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/tsconfig.build.json b/server/tsconfig.build.json index 64f86c6..fd4d730 100644 --- a/server/tsconfig.build.json +++ b/server/tsconfig.build.json @@ -1,4 +1,4 @@ { "extends": "./tsconfig.json", - "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] + "exclude": ["node_modules", "test", "dist", "**/*spec.ts", "prisma/data/foundry-pf2e"] }