mirror of https://github.com/webpack/webpack.git
17 lines
204 B
JavaScript
17 lines
204 B
JavaScript
|
module.exports = {
|
||
|
mode: "production",
|
||
|
target: "web",
|
||
|
optimization: {
|
||
|
minimize: false
|
||
|
},
|
||
|
experiments: {
|
||
|
outputModule: true
|
||
|
},
|
||
|
output: {
|
||
|
library: {
|
||
|
type: "module"
|
||
|
},
|
||
|
module: true
|
||
|
}
|
||
|
};
|