When we hit "ng build" while doing Angular build by default it bundles HTML with JS and gives us one physical JS unit file.
Is there a option in "ng build" by which i can say do not bundle the view with the JS ?
some thing like
ng build --exclude views
Note I'm aware i can do by using webpack but do not want to explore this route for now as i have a very big project made in Angular 2 and want to quickly migrate.