mirror of https://github.com/webpack/webpack.git
14 lines
220 B
JavaScript
14 lines
220 B
JavaScript
|
|
/** @type {import("../../../../").Configuration} */
|
||
|
|
module.exports = {
|
||
|
|
target: "web",
|
||
|
|
mode: "development",
|
||
|
|
experiments: {
|
||
|
|
outputModule: true,
|
||
|
|
css: true
|
||
|
|
},
|
||
|
|
output: {
|
||
|
|
module: true,
|
||
|
|
chunkFormat: "module"
|
||
|
|
}
|
||
|
|
};
|