angular deployment - Jorge-Dacal/devonfw-tutorial-sources GitHub Wiki
Table of Contents
When you have a finished version of your application and you want to deploy it somewhere you just make sure you have all your test running correctly and your app compiles. Then, run this Angular/cli command in your project root folder:
ng build
This process will compile the project and generate a folder called dist:
Dist folder contains all your typescript code transpiled to javascript, that is all, now you have all you need in that folder to deploy your project wherever you want.