From 2c530ef73a2037087596c7f3afb5134426f4676c Mon Sep 17 00:00:00 2001 From: WangDL Date: Sun, 24 May 2026 11:54:48 +0800 Subject: [PATCH] fix: exclude prisma/rag-worker dirs from build due to rootDir constraint Co-Authored-By: Claude Opus 4.7 --- tsconfig.build.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index f56a05c..ffaff02 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -3,5 +3,5 @@ "compilerOptions": { "rootDir": "src" }, - "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] + "exclude": ["node_modules", "test", "dist", "prisma", "rag-worker", "**/*spec.ts"] }