I just started digging into Angular2. Looks promising at this point. One this I could not find is production deployment best practices or guides (if any). Of course, I could run npm in production and serve the thing through light server, but isn't is best to compile everything for deployment? I am aware that I can precompile everything (even into a single file), but do I need to maintain different entry file for that? (by the way, I tried it and it does not work out of the box).
Any advice?