mirror of https://github.com/webpack/webpack.git
13 lines
161 B
JavaScript
13 lines
161 B
JavaScript
|
module.exports = {
|
||
|
output: {
|
||
|
module: true
|
||
|
},
|
||
|
optimization: {
|
||
|
usedExports: true,
|
||
|
concatenateModules: true
|
||
|
},
|
||
|
experiments: {
|
||
|
outputModule: true
|
||
|
}
|
||
|
};
|