September 2017
Intermediate to advanced
450 pages
11h 24m
English
Manually building our TypeScript files in our project adds an extra layer of complexity for what we need to do each time we restart our application. In Angular-CLI, this build system uses WebPack to configure and manage this build operation automatically. However, depending on the needs of your application, there are simple ways to automate a lightweight build process to compile TypeScript, and reload your application just using NPM scripts.
To do this, we will need to install a few additional modules to help us:
npm install --save-dev rimraf npm-run-all ...
Read now
Unlock full access