Showing results for 2025 - TypeScript

Mar 11, 2025
Post comments count82
Post likes count176

A 10x Faster TypeScript

Anders Hejlsberg
Anders Hejlsberg

Today I'm excited to announce the next steps we're taking to radically improve TypeScript performance. The core value proposition of TypeScript is an excellent developer experience. As your codebase grows, so does the value of TypeScript itself, but in many cases TypeScript has not been able to scale up to the very largest codebases. Devel...

Feb 28, 2025
Post comments count1
Post likes count14

Announcing TypeScript 5.8

Daniel Rosenwasser
Daniel Rosenwasser

Today we're excited to announce the release of TypeScript 5.8! If you're not familiar with TypeScript, it's a language that builds on top of JavaScript by adding syntax for types. Writing types in our code allows us to explain intent and have other tools check our code to catch mistakes like typos, issues with and , and more. Types also power...

Feb 13, 2025
Post comments count0
Post likes count4

Announcing TypeScript 5.8 RC

Daniel Rosenwasser
Daniel Rosenwasser

Today we are excited to announce the Release Candidate (RC) of TypeScript 5.8! To get started using the Release Candidate, you can get it through npm with the following command: Let's take a look at what's new in TypeScript 5.8! What's New Since the Beta? Since our beta release, we have had to pull back some work on how functions with conditi...

Jan 29, 2025
Post comments count1
Post likes count11

Announcing TypeScript 5.8 Beta

Daniel Rosenwasser
Daniel Rosenwasser

Today we are excited to announce the availability of TypeScript 5.8 Beta. To get started using the beta, you can get it through npm with the following command: Let's take a look at what's new in TypeScript 5.8! Checked Returns for Conditional and Indexed Access Types Consider an API that presents a set of options to a user: The intent with...