Basics

Challenges

Classes

Cookies

Debugging

Events

External Files

Flow Control

Forms

Functions

Html Elements

Installation

Interfaces

Keywords

Modules

Namespaces

Operators

Reference Files

String

Types

TypeScript - Compiling Manually

Before you set up your TypeScript project to perform complicated build tasks, you can compile each individual file manually. You can do this at a command like by just saying tsc myFile.ts.

It will automatically build a js version in the same folder. You need to make sure you're in the same folder as the ts file.