tslib
tslib copied to clipboard
Version 1.14.0 removes default export
This used to work before version 1.14.0 and is still listed in the README:
var tslib_1 = require("tslib");
exports.x = {};
exports.y = tslib_1.__assign({}, exports.x);
I consider this a breaking change since many older libraries are built using tslib < 1.14.0 but upgrading a local app to tslib >= 1.14.0 breaks libraries that rely on the default export.
I think this is fixed in #129 - we made no changes to the actual exports the JS emits
We are still having the issue.