This is a webpack plugin that can visualization your module structure.
From module perspective,not bundle perspective.
webpack 4 environment
yarn add module-tree-plugin -D
const ModuleTreePlugin = require('module-tree-plugin');
module.exports = {
plugins: [
new ModuleTreePlugin()
]
}
MIT.