After working with angular-cli using systemJS, I have become comfortable with the build process, test cases, and component interaction.
Recently, I made the switch from angular-cli
to angular-cli@webpack
.
However, I am now facing confusion on a few points:
- Can you explain how the webpack build process works?
- How do I go about installing third-party libraries like
lodash
,ng2-bootstrap
, etc. with this webpack configuration since I do not see awebpack.config.ts
file? - Why can't I see any bundle containing JS files of my application?
- All I can see are TypeScript files for my application. Why is that?
Thank you in advance for your help.