webpack-stats 0.2.0

As zero-copy as possible representation of webpack-stats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const path = require('path');

module.exports = {
    context: path.resolve(__dirname, "../common_src"),
    entry: {
        index: "./index.js",
        entryTwo: "./entry_two.js"
    },
    // mode: 'development',
    optimization: {
        splitChunks: {
            chunks: 'async',
            minChunks: 1,
            minSize: 1,

        }
    }
}