Basics
Challenges
Classes
Debugging
Events
External Files
Flow Control
Forms
Functions
Html Elements
Installation
Interfaces
Keywords
Modules
Namespaces
Operators
Reference Files
String
Types
ctrl + shift + p
lets you search VS Code commands. It will bring up a search bar.
ctrl + shift + b
will run the build task very much like it will build an application in Visual Studio.
When working with TypeScript, we will need use a TypeScript Build Task which uses a tsconfig.json
file.
Helpful demonstration of a task runner here on Pluralsight.
You may see a task.json
file appear from time to time. This is a file which defines a single task that be executed. However, we will
most likely use tsconfig.json
(see here) which can compile all of our TypeScript files at once.