This is maybe more a clarification question:
According to the docs for Ivy (since Angular 9) we need to add a postinstall
script into our package.json, which looks like this:
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points"
However, since we're trying to improve our build time (which takes ages since Ivy), I came across an article on entwickler.de (unfortunately in german), mentioning, that since Angular 9.1 we don't need this postinstall script anymore.
However, I cannot find anything in the official docs about omitting this postinstall script...
Would that be a way to potentially speed up the build time?