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
const path = require('path');

module.exports = {
    context: path.resolve(__dirname, "./src"),
    entry: {
        index: ["./index.js"],
    },
    output: {
        path: path.resolve(__dirname, 'dist'),
      filename: "index.js"
    },
}