fix module shadowing when using CommonJS-like module formatters - fixes #1544

This commit is contained in:
Sebastian McKenzie
2015-05-16 01:47:48 +01:00
parent 375689a1ff
commit ea510d09d0
5 changed files with 38 additions and 17 deletions

View File

@@ -0,0 +1,3 @@
export function module() {
}

View File

@@ -0,0 +1,8 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.module = _module;
function _module() {}