Commit a0b265b
committed
fix: tsc errors blocking npm publish
Update tsconfig to remove deprecated 'moduleResolution: node' (now errors
in TS 6.0+) and resolve missing globals/types so 'tsc' exits cleanly:
- moduleResolution: node → bundler (matches module: esnext)
- lib: add 'dom' for atob/WebAssembly globals
- types: explicit 'node' + 'bun' (Buffer.toBase64 used by macro)
Required because prepublishOnly runs 'bun run build' which now propagates
tsc's non-zero exit, breaking 'npm publish'.1 parent d980480 commit a0b265b
1 file changed
Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
| 6 | + | |
6 | 7 | | |
7 | | - | |
| 8 | + | |
8 | 9 | | |
9 | 10 | | |
10 | 11 | | |
| |||
0 commit comments