October 2021
Intermediate to advanced
336 pages
9h 16m
English
We use Node.js to install TypeScript, so first we need to install that.
Go to https://nodejs.org/en, and download the LTS version.
Go through the installer.
Verify the installation by opening PowerShell (or another console) and running this command:
npm --version
It should return something like 6.14.6.
Open PowerShell, and run this command:
npm install -g typescript
This uses Node.js’s package manager (npm) to install the typescript compiler globally (-g), as opposed to in the local folder.
Verify the installation by running this command:
tsc --version
It should return something like Version 4.0.3.
Go to https://code.visualstudio.com, and download ...
Read now
Unlock full access