Showing results for November 2024 - TypeScript

Nov 22, 2024
2
7

Announcing TypeScript 5.7

Daniel Rosenwasser
Daniel Rosenwasser

Today we excited to announce the availability of TypeScript 5.7! If you're not familiar with TypeScript, it's a language that builds on JavaScript by adding syntax for type declarations and annotations. This syntax can be used by the TypeScript compiler to type-check our code, and it can also be erased to emit clean, idiomatic JavaScript code. Typ...

Nov 8, 2024
0
7

Announcing TypeScript 5.7 RC

Daniel Rosenwasser
Daniel Rosenwasser

Today we are announcing the availability of the release candidate of TypeScript 5.7. To get started using the RC, you can get it through npm with the following command: Let's take a look at what's new in TypeScript 5.7! Checks for Never-Initialized Variables For a long time, TypeScript has been able to catch issues when a variable has not yet...