Is there a way to customize the configuration in order to automatically create separate folders within the "dist" directory for each chunk file in Angular 2?
Currently, when I use ngcli and build my project with ng build, it generates the "dist" folder, which is great.
Here is the basic structure of my project:
https://i.sstatic.net/T0WQM.png
However, I would like all *.chunk.js and *.map files to be placed in their respective folders within the dist directory. For example:
dist/modules/0.chunk.js
dist/modules/0.map
This way, the overall structure will resemble...