Skip to content

00. TypeScript Overview

idavidov13 edited this page Apr 23, 2024 · 3 revisions

What is TypeScript

image

TypeScript Advantages

image

TypeScript Compiler

Watch Mode

tsc app.ts --watch or tsc app.ts -w

Compiling the Entire Project / Multiple Files

Initialize the tsconfig file with tsc --init

Start the Watch mode for the whole project tsc -w

Setting a rootDir and outDir

image

Resources

tsconfig
Compiler Config Docs
VS Code TS Debugging

Clone this wiki locally