What's Changed
- feat: align lib option with tsconfig lib option #167
BREAKING CHANGE: The lib option now aligns with how you would specify it in tsconfig.json.
For example, to include DOM types do:await build({ // ...etc... compilerOptions: { lib: ["es2021", "dom"], }, });
- feat: add
Array.prototype.findLast
andfindLastIndex
polyfills #168 - fix: correct
Error#cause
typings #169
Full Changelog: 0.24.0...0.25.0