I got something like this:
ng build --prod --no-aot
But I am not able to understand what is the difference between
ng build --
Just run command ng build -prod -aot=false. This will disable the aot compiler.
Use the following command to disable AOT mode:
$ ng build --prod --aot=false --build-optimizer=false
The flag --prod does the AOT compilation by default. If you want to build without AOT then simply run ng build only without any flag.