mirror of https://github.com/webpack/webpack.git
23 lines
380 B
JavaScript
23 lines
380 B
JavaScript
|
/** @type {import("../../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
entry: "./index.mjs",
|
||
|
experiments: {
|
||
|
outputModule: true
|
||
|
},
|
||
|
name: "esm",
|
||
|
target: "web",
|
||
|
output: {
|
||
|
publicPath: "",
|
||
|
module: true,
|
||
|
filename: "bundle0.js",
|
||
|
chunkFilename: "[name].js",
|
||
|
crossOriginLoading: "anonymous"
|
||
|
},
|
||
|
performance: {
|
||
|
hints: false
|
||
|
},
|
||
|
optimization: {
|
||
|
minimize: false
|
||
|
}
|
||
|
};
|