mirror of https://github.com/webpack/webpack.git
15 lines
176 B
JavaScript
15 lines
176 B
JavaScript
|
module.exports = {
|
||
|
output: {
|
||
|
module: true,
|
||
|
library: {
|
||
|
type: "module"
|
||
|
}
|
||
|
},
|
||
|
optimization: {
|
||
|
concatenateModules: true
|
||
|
},
|
||
|
experiments: {
|
||
|
outputModule: true
|
||
|
}
|
||
|
};
|