###Create a directory and name it ngZygote to contain our project -> mkdir ngZygote
###Initialize an npm package -> npm init // choose default options mostly
-> npm install
this installs all the required dependencies to the project
this file instructs typescript compiler on how to do certain things
webpack is a module loader which is generally used to achieve module loading stuff but with its plugins it usually does more than just module loading , it has plugins to perform many different tasks like understanding different file extensions and loading them all performing certain set of tasks
-> webpack.config.js
All the configurations we did above are just a setup to get us started , we've not yet written a single line of our project code but these configurations save a lot of time in a long run as we'll see shortly
Create a src folder for the source of our app -> mkdir src
inside src created the following 4 files and make sure they look similar to what's given below.