November 2019
Beginner
804 pages
20h 1m
English
We will again be using the Parcel bundler for this application. Now that you know a bit more about bundlers, you should be able to better appreciate how this helps us to build the application.
The output of the Parcel bundling process will be stored in the dist folder, which will thus contain the production version of the code. That way, we will not mix build-time elements and production ones.
Another change that we have made, compared to the previous applications, is that we will put our source code inside the src subfolder, instead of at the root level. This will introduce a cleaner separation of concerns as we'll avoid mixing configuration files with the application code.
The output of the TypeScript ...
Read now
Unlock full access