Detailed view
By default, the report (in both html
and json
format) only includes the distribution files of the dependencies (the file used by the bundler). This is because in most cases it is only important to know if the dependency is in the bundle or how much space it takes. Including more information would only add noise to the report and increase build time.
However, if you need to inspect the contents of the dependencies, you can enable the detailed
option in the configuration. This allows Sonda to read the source maps of the dependencies and map the used code to the original source files.
Note that this will only work for dependencies that include source maps.
If you would like to see the actual code that got included in the bundle, see the Used code page.