mirror of https://github.com/webpack/webpack.git
17 lines
246 B
JavaScript
17 lines
246 B
JavaScript
|
module.exports = {
|
||
|
output: {
|
||
|
module: true,
|
||
|
library: {
|
||
|
type: "module"
|
||
|
}
|
||
|
},
|
||
|
optimization: {
|
||
|
usedExports: true,
|
||
|
concatenateModules: true
|
||
|
},
|
||
|
target: "browserslist: last 2 chrome versions",
|
||
|
experiments: {
|
||
|
outputModule: true
|
||
|
}
|
||
|
};
|