webpack/test/statsCases/graph-roots/webpack.config.js

17 lines
263 B
JavaScript

"use strict";
/** @type {import("../../../").Configuration} */
module.exports = {
mode: "development",
entry: "./index.js",
optimization: {
splitChunks: false
},
stats: {
all: false,
chunks: true,
chunkModules: true,
dependentModules: false
}
};