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