I am using BundleAnalyzerPlugin for Webpack. It does a great job of showing which libraries are included in which chunks. However, if I want to ensure a library is not included in a chunk (to reduce size) it is hard to know which files are causing it to be included. Is there a way to output this?
Example
In the screenshot below, JQuery is included. JQuery is used lots in the codebase and I would like to have a list of JS, TS, Vue,... files that are requiring JQuery in this chunk specifically. Is this possible?