Skip to content

Commit da0c386

Browse files
committed
fix: fix re-export at esm entry point
1 parent 481d352 commit da0c386

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import tslib from '../tslib.js';
1+
import * as tslib from '../tslib.js';
22
const {
33
__extends,
44
__assign,
@@ -25,7 +25,7 @@ const {
2525
__classPrivateFieldGet,
2626
__classPrivateFieldSet,
2727
__classPrivateFieldIn,
28-
} = tslib;
28+
} = tslib.default || tslib;
2929
export {
3030
__extends,
3131
__assign,

0 commit comments

Comments
 (0)