webpack/test/configCases/library/0-create-library/index-async.js

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);