Skip to main content
Note: this page is a beta page, don't rely on the URL and file issues on microsoft/TypeScript-Website please

TypeScript 3.8 is now available, 3.8 is currently in beta.

TypeScript is JavaScript For Any Scale.

TypeScript extends JavaScript by adding types to the language.

TypeScript speeds up your development experience by catching errors and providing fixes before you even run your code.

Any browser, any OS, anywhere JavaScript runs. Entirely Open Source.

Without TypeScript
function addPrices(items) { let sum = 0; for (const item of items) { sum += item; } return sum; } addPrices(3, 4, 6);
TypeScript
function addPrices(items: number[]) { let sum = 0; for (const item of items) { sum += item; } return sum; } addPrices(3, 4, 6);
Expected 1 argument,
but got 3.

What is TypeScript?

JavaScript and More

TypeScript is an open-source language which builds on JavaScript, one of the world’s most used tools, by adding static type definitions.

Types provide a way to describe the shape of an object, providing better documentation, and allowing TypeScript to validate that your code is working correctly.

Writing types can be optional in TypeScript, because type inference allows you to get a lot of power without writing additional code.

A Result You Can Trust

All valid JavaScript code is also TypeScript code. You might get type-checking errors, but that won't stop you from running the resulting JavaScript. While you can go for stricter behavior, that means you're still in control.

TypeScript code is transformed into JavaScript code via the TypeScript compiler or Babel. This JavaScript is clean, simple code which runs anywhere JavaScript runs: In a browser, on Node.JS or in your apps.

Gradual Adoption

Adopting TypeScript is not a binary choice, you can start by annotating existing JavaScript with JSDoc, then switch a few files to be checked by TypeScript and over time prepare your codebase to convert completely.

TypeScript’s type inference means that you don’t have to annotate your code until you want more safety.

Types On Every Desk

Most of the worlds JavaScript’s is un-typed, and inference can only go so far. To address this, the TypeScript team helps maintain

Definitely Typed - a community project to provide types and inline documentation to existing JavaScript.

This project allows the community to maintain type definitions for JavaScript libraries without putting extra pressure on their maintainers.

Consistently Good Tooling

By handling a lot of the editor integration inside TypeScript, you can get a consistent experience working in many editors.

This lets you easily jump between editors like Visual Studio, Visual Studio Code, Nova, Atom, Sublime Text, Emacs, Vim, WebStorm and Eclipse.

TypeScript's editor integration supports JavaScript, so it's quite likely you're already using TypeScript under the hood.

Evolving with Standards

The TypeScript team contributes to the TC39 committees which help guide the evolution of the JavaScript language.

When new features have reached stage 3, then they are ready for inclusion in TypeScript.

For example the TypeScript team championed proposals like Optional Chaining, Nullish coalescing Operator, Throw Expressions and RegExp Match Indices.

Migration Stories

First, we were surprised by the number of small bugs we found when converting our code.

Second, we underestimated how powerful the editor integration is.

TypeScript was such a boon to our stability and sanity that we started using it for all new code within days of starting the conversion

Felix Rieseberg at Slack covered the transition their desktop app's from JavaScript to TypeScript in their blog

Read

Get Started

Install TypeScript

You can install TypeScript via npm

npm install -g typescript

Then run the compiler via tsc

npm install -g typescript

Learn more here

Quarterly Releases

Our next release is 3.8, which is planned for Feb 18

3.8 Released
Nov 5

3.8 Beta
Jan 8

3.8 RC
Feb 4