Releases: microsoft/tslib
tslib 2.5.0
What's New
- Fix asyncDelegator reporting done too early by @apendua in #187
- Add support for TypeScript 5.0's
__esDecorate
and related helpers by @rbuckton in #193
Full Changelog: 2.4.1...2.5.0
tslib 2.4.1
This release contains fixes for early return
s and throw
s invoked on generators.
tslib 2.4.0
This release includes the __classPrivateFieldIn
helper as well as an update to __createBinding
to reduce indirection between multiple re-exports.
tslib 2.3.1
This release updates the __spreadArray
helper for TypeScript 4.4 to correctly operate on collections that are not "concat-spreadable" such as the DOM's NodeList
s and HTMLCollection
s.
tslib 2.3.0
This release updates tslib to use TypeScript 4.4's upcoming __spreadArray
helper which correctly preserves sparse array inputs (e.g. arrays containing "missing" elements like [1, 2, , 4]
). This new version of __spreadArray
is backwards-compatible and is often also faster. See #151 for more details.
tslib 2.2.0
This release supports TypeScript 4.3's new functionality for ECMAScript private methods and accessors, and private static class members.
It does so by expanding the scope of __classPrivateFieldGet
and __classPrivateFieldSet
. See #146 for more details.
tslib 2.1.0
This release adds a new __spreadArray
helper which avoids side-effects compared to the now-deprecated __spreadArrays
and __spread
helpers. See #133 for more details.
This release also provides a more-specific error message when extending from a type which is not a function and not null. See #138 for more details.
Webpack 5 Compatibility - 2.x
Full discussion in the webpack issue
Webpack 5 compatibility support - 1.x
Long discussion in the webpack issues
ES Module Support
This release adds support for using tslib in Node using esmodule imports, further context in #126 and the related issues.