Deploy Angular 7 app to IIS

Create deploy Package for Angular app using :
ng build --prod
It’s create a folder dist which contains all required files.

You can take the contents of this folder and drop it into the root of your Web server and everything will work just fine.
For example, on my system IIS is installed in C:\inetpub and hence the default web root is C:\inetpub\wwwroot.
After building: deploy your application by copying the contents of your web project ‘dist’ folder into the wwwroot folder.