I'm relatively new to all this, I've read a few other questions that feel similar but my inexperience is causing me to question which path is best.
I have a functioning Angular 2 site based on the Quick Start from the Angular 2 guide. Its currently using the lite-server to host locally, but I'd like to move it to our server so it can be viewed externally. My understanding is that I'll need to convert the TS files to JS (which I thought was already happening in real time from lite-server) and then move those files to the server?
Could someone explain the steps required to make this happen? It feels as though the Angular 2 quick start favors Systemjs to build, however I've seen many posts where webpack is mentioned.
Are systemjs and webpack interchangeable? Are they the preferred ways to build an Angular 2 project to a deployable format?