Implement importInterop: "node" option for module transforms (#12838)
This commit is contained in:
@@ -0,0 +1 @@
|
||||
export { name } from 'dep';
|
||||
@@ -0,0 +1,13 @@
|
||||
define(["exports", "dep"], function (_exports, _dep) {
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(_exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(_exports, "name", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _dep.name;
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user