mirror of https://github.com/webpack/webpack.git
15 lines
424 B
JavaScript
15 lines
424 B
JavaScript
export * from "./a";
|
|
export default "default-value";
|
|
export var b = "b";
|
|
export { default as external } from "external";
|
|
export * from "external-named";
|
|
|
|
const test = await 1;
|
|
|
|
var module = "should not conflict",
|
|
define = "should not conflict",
|
|
require = "should not conflict",
|
|
exports = "should not conflict",
|
|
globalName = "should not conflict";
|
|
console.log.bind(console, module, define, require, exports, globalName);
|