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
-**Don't try to fix all tsc errors** — they're from decompilation and don't affect runtime.
112
132
-**`feature()` is always `false`** — any code behind a feature flag is dead code in this build.
113
133
-**React Compiler output** — Components have decompiled memoization boilerplate (`const $ = _c(N)`). This is normal.
114
134
-**`bun:bundle` import** — In `src/main.tsx` and other files, `import { feature } from 'bun:bundle'` works at build time. At dev-time, the polyfill in `cli.tsx` provides it.
115
135
-**`src/` path alias** — tsconfig maps `src/*` to `./src/*`. Imports like `import { ... } from 'src/utils/...'` are valid.
0 commit comments