fix: change TypeScript moduleResolution from bundler to node

Change moduleResolution from "bundler" to "node" for better
compatibility with pnpm workspace package resolution.

This helps TypeScript better resolve workspace dependencies
while maintaining compatibility with Next.js.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock
2025-10-07 15:15:49 -05:00
parent 3353bcadc2
commit 327aee0b4b

View File

@@ -8,7 +8,7 @@
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",