From 6c3f333bdb18d111b03951c6653fd0a88666dab9 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Mon, 7 Jul 2025 20:20:43 -0400 Subject: [PATCH] Exclude frontend from main TypeScript build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Frontend TypeScript files are built separately with esbuild and their own tsconfig.json that includes DOM types. This prevents DOM type errors in the main backend build. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 3bbb83d..48f1314 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -28,6 +28,7 @@ "node_modules", "dist", "public", - "scripts" + "scripts", + "src/frontend" ] } \ No newline at end of file