How to get one file as output of angular cli
问题 I'm working on ng2 application and I use @angular/cli to build it. As output it emits several js files like .inline.js , .vendor.js etc. The question is -- how to set up angular-cli to emit only one file as a result, i.e. bundle vendor.js , inline.js etc. into one big file? I understand that it could be done by using additional bundler but it would be nice to achieve it via ng-cli PS I don't use lazy loading in this app and definitely won't. PPS Just concat files afterwards is not an option