The intent of this option is to toggle module interop behavior. When `true` no `interopRequireXXX` helper invocations will be emitted.
15 lines
227 B
JavaScript
15 lines
227 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var _foo = require('foo');
|
|
|
|
Object.defineProperty(exports, 'default', {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _foo.default;
|
|
}
|
|
});
|