I'm using angular cli v1.0.0-beta.21 and using ng -b -prod -aot I'm getting the expected
There some files which I don't know what they are for and was hoping you could enlighten me!
In particular I'd like to know if I need those .map files, since they are really bid (main.bundle.map is like 3.3MB)
Thanks!
You do not need the map files.
The gz files are optional. They are actually preferable if your web server is configured to support them.
The inline.bundle is the module loader. The styles.bundle.js is your compiled component styles. These are in a js file because they are added to the dom with dynamic namespaces for CSS encapsulation.
In summary all of these files are needed except the map and gz files. It is a good idea to use the gz files if your http server is configured to use them.