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
tslib@2 was recently released, and we may want to either upgrade to require that version or optionally add support for it in our dependency range. Need to investigate which TS versions are supported by tslib@2 both while compiling and for consumers and if it's possible to support both 1 and 2 for now.
The text was updated successfully, but these errors were encountered:
This release changes __exportStar and __importStar to use __createBinding which is incompatible with versions of TypeScript older than 3.9 (i.e. 3.8 and below).
TypeScript 3.9 won't work on anything older than tslib 2.0
From what I can tell (see this PR comment), the tslib version which must be used is bound to the TS version used to compile the library, not to consume it. So whenever we internally upgrade to TS 4.1, I think we should be able to update to tslib@2 at that time without any affect on consumers (besides a minor bundle size hit).
tslib@2
was recently released, and we may want to either upgrade to require that version or optionally add support for it in our dependency range. Need to investigate which TS versions are supported bytslib@2
both while compiling and for consumers and if it's possible to support both 1 and 2 for now.The text was updated successfully, but these errors were encountered: