Posts by this author

Feb 20, 2020
9
0

Announcing TypeScript 3.8

Today we're proud to release TypeScript 3.8! For those unfamiliar with TypeScript, it's a language that adds syntax for types on top of JavaScript which can be analyzed through a process called static type-checking. This type-checking can tell us about errors like typos and values that are potentially and before we even run our code. More than...

Feb 6, 2020
3
0

Announcing TypeScript 3.8 RC

Today we're announcing the Release Candidate for TypeScript 3.8! Between this RC and our final release, we expect no changes apart from critical bug fixes. To get started using the RC, you can get it through NuGet, or through npm with the following command: You can also get editor support by TypeScript 3.8 brings a lot of...

Jan 10, 2020
3
0

Announcing TypeScript 3.8 Beta

Today we're announcing the availability of TypeScript 3.8 Beta! This Beta release contains all the new features you should expect from TypeScript 3.8's final release. To get started using the beta, you can get it through NuGet, or through npm with the following command: You can also get editor support by TypeScript 3.8 brings...

Nov 5, 2019
3
0

Announcing TypeScript 3.7

We're thrilled to announce the release of TypeScript 3.7, a release packed with awesome new language, compiler, and tooling features. If you haven't yet heard of TypeScript, it's a language based on JavaScript that adds static type-checking along with type syntax. Static type-checking lets us know about problems with our code before we try to ru...

Oct 24, 2019
0
0

Announcing TypeScript 3.7 RC

We're pleased to announce TypeScript 3.7 RC, the release candidate of TypeScript 3.7. Between now and the final release, we expect no further changes except for critical bug fixes. To get started using the RC, you can get it through NuGet, or use npm with the following command: You can also get editor support by TypeScript 3....

Oct 1, 2019
21
0

Announcing TypeScript 3.7 Beta

We're pleased to announce TypeScript 3.7 Beta, a feature-complete version of TypeScript 3.7. Between now and the final release, we'll be fixing bugs and further improving performance and stability. To get started using the beta, you can get it through NuGet, or use npm with the following command: You can also get editor support by ...

Aug 28, 2019
3
0

Announcing TypeScript 3.6

Today we're happy to announce the availability of TypeScript 3.6! For those unfamiliar, TypeScript is a language that builds on JavaScript by adding optional static types. These types can be checked by the TypeScript compiler to catch common errors in your programs (like misspelling properties and calling functions the wrong way). Tools like the...

Aug 16, 2019
0
0

Announcing TypeScript 3.6 RC

Today we're happy to announce the availability of the release candidate of TypeScript 3.6. This release candidate is intended to be fairly close to the full release, and will stabilize for the next few weeks leading up to our official release. To get started using the RC, you can get it through NuGet, or use npm with the following command: ...

Jul 19, 2019
2
0

Announcing TypeScript 3.6 Beta

Today we're happy to announce the availability of TypeScript 3.6 Beta. This beta is intended to be a feature-complete version of TypeScript 3.6. In the coming weeks we'll be working on bugs and improving performance and stability for our release candidate, and eventually the full release. To get started using the beta, you can get it through NuG...

May 29, 2019
11
0

Announcing TypeScript 3.5

Today we're happy to announce the availability of TypeScript 3.5! If you're new to TypeScript, it's a language that builds on JavaScript that adds optional static types. TypeScript code gets type-checked to avoid common mistakes like typos and accidental coercions, and then gets transformed by a program called the TypeScript compiler. The compil...