What's Changed
- feat: upgrade to deno-shim 0.6 and crypto-shim 0.3 #158
- feat: upgrade undici to 5.3 & automatically include @types/node dev dependency for undici #159
- feat: add types for lib options (#162)
- fix: exclude DOM types by default #160
BREAKING CHANGE: DOM types were erroenously included by default before. If you still want them then you can do:await build({ // ...etc... compilerOptions: { lib: ["lib.es2021.d.ts", "lib.dom.d.ts"], }, });