Effective TypeScript

Effective TypeScript

@effective-typescript

Publisher

20

Posts

Posts by Effective TypeScript

TypeScript 5.5: A Blockbuster Release

TypeScript 5.5: A Blockbuster Release

We TypeScript developers are a lucky bunch. While some languages (Python, JavaScript) are released annually, every three years (C++) or even less, we get four new versions of TypeScript every year. TypeScript 5.5 was released on June 20th, 2024, and it was a real blockbuster. Let's take a look.

0
A keyof puzzle

A keyof puzzle

Effective TypeScript is nearly 400 pages long, but I've received the most feedback by far on just one passage. It comes in Item 7: Think of Types as Sets of Values: keyof (A&B) = (keyof A) | (keyof B)keyof (A|B) = (keyof A) & (keyof B) If you can build an intuition for why these equations hold,...

0
Notes on TypeScript 5.1

Notes on TypeScript 5.1

Every three months we get a new TypeScript release and TypeScript 5.1 landed on June 1, 2023. This release has a few interesting new features, but by far the most noticeable changes are performance improvements and error message ergonomics. Let's take a look!

0