mirror of https://github.com/webpack/webpack.git
18 lines
333 B
JavaScript
18 lines
333 B
JavaScript
/** @type {import("../../../../types").Configuration} */
|
|
module.exports = {
|
|
mode: "development",
|
|
experiments: {
|
|
outputModule: true
|
|
},
|
|
output: {
|
|
module: true,
|
|
chunkFormat: "module",
|
|
filename: "[name].mjs",
|
|
chunkFilename: "[name].chunk.mjs",
|
|
enabledLibraryTypes: ["module"]
|
|
},
|
|
optimization: {
|
|
minimize: false
|
|
}
|
|
};
|