You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(producer): use TypeScript compiler API for declarations, avoiding Windows junction EPERM
Spawning tsc as a child process (even via 'bun x tsc') fails on Windows
because Node.js realpathSync returns EPERM when stat-ing NTFS junctions
created by Bun in packages/producer/node_modules/typescript.
Use the TypeScript compiler API (import ts from 'typescript') directly
inside build.mjs instead. Since build.mjs runs under Bun, all module
resolution and file I/O goes through Bun's junction-aware layer.
0 commit comments