TypeScript is a language made by Microsoft. It is a superset of JavaScript meaning it adds features to vanilla JavaScript.
Vanilla JavaScript it dynamically typed, which means the type (const, string, int etc) is checked at run time, which can be missed.
In TypeScript, Types checked before run-time (tracking bugs before shifting your code). This means its easier to spot bugs early on.