mirror of https://github.com/webpack/webpack.git
20 lines
312 B
JavaScript
20 lines
312 B
JavaScript
"use strict";
|
|
|
|
/** @type {import("../../../").Configuration} */
|
|
module.exports = {
|
|
mode: "production",
|
|
entry: "./index",
|
|
output: {
|
|
filename: "bundle.js"
|
|
},
|
|
optimization: {
|
|
concatenateModules: false
|
|
},
|
|
stats: {
|
|
chunkModules: false,
|
|
modules: true,
|
|
providedExports: true,
|
|
usedExports: true
|
|
}
|
|
};
|