Understanding TypeScript - 2020 Edition
This repository contains my code solutions from the Udemy course Understanding TypeScript - 2020 Edition.
Each individual lesson is treated as a separate node
project. To execute the code do the following:
- Navigate to the root-level folder of a lesson containing a
package.json
file. - Run
npm install
to install thenode modules
. Thetypescript
compiler will be installed locally when you execute this command. - In earlier projects, run
node_modules/.bin/tsc app.json
to compile theapp.ts
file. Or in later projects runnode_modules/.bin/tsc -w
to automatically watch for and compile changes in multiple typescript files in the project.