TypeScript is a programming language developed and maintained by Microsoft.
It is a strict syntactical superset of JavaScript that adds optional static typing to the language.

TypeScript code never runs directly in your browser. Your browser can only understand javascript.
type checking (similar to C++). If any type errors are detected, the conversion to JavaScript fails
tsc is the official TypeScript compiler that converts TypeScript code into JavaScript.
Several other popular compilers/transpilers also convert TypeScript to JavaScript. Notable examples include: