Exclude frontend from main TypeScript build

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 <noreply@anthropic.com>
This commit is contained in:
Claude Code 2025-07-07 20:20:43 -04:00
parent 6f5c32d2cd
commit 6c3f333bdb

View file

@ -28,6 +28,7 @@
"node_modules", "node_modules",
"dist", "dist",
"public", "public",
"scripts" "scripts",
"src/frontend"
] ]
} }