JavaScript in Plain English

New JavaScript and Web Development content every day. Follow to join our 3.5M+ monthly readers.

Follow publication

Member-only story

TypeScript 5.8: Smarter, Faster, and More Efficient

Abhinav Kumar
JavaScript in Plain English
4 min readMar 3, 2025
Photo by Fabio Santaniello Bruun on Unsplash

Click here to read the free version

TypeScript 5.8 is here, bringing powerful new features, improved performance, and key enhancements to streamline your development workflow. If you’re using TypeScript, this update is packed with valuable additions that improve type safety, optimize program loads, and enhance compatibility with modern JavaScript ecosystems.

Let’s explore what’s new in TypeScript 5.8 and how it can improve your development experience.

1. Granular Checks for Return Expressions

In previous versions, TypeScript struggled with certain return expressions, often missing potential bugs when conditional expressions contained any types.

declare const userRoles: Map<string, string | null>;

function getUserRole(userId: string): string {
return userRoles.has(userId) ?
userRoles.get(userId) :
"guest"; // ❌ Error! 'string | null' is not assignable to 'string'
}
declare const userRoles: Map<string, string | null>;

function getUserRole(userId: string): string {
const role = userRoles.get(userId);
return role ?? "guest"; // ✅ Ensures null is properly handled
}
  • Previously, TypeScript did not catch that it userRoles.get(userId) could returnnull, potentially causing unintended issues.
  • With TypeScript 5.8, the stricter return expression checks ensure that developers explicitly handle possible null or undefined cases.

With TypeScript 5.8, the compiler performs stricter checks on conditional return expressions, reducing unintended type mismatches and improving overall type safety.

2. Better Support for require() of ECMAScript Modules

Historically, Node.js did not allow require() calls to import ECMAScript modules (ESM) from CommonJS files. However, Node.js 22 introduces a relaxation of this rule, allowing most ESM files to be required from CommonJS.

TypeScript 5.8 aligns with this change under the --module nodenext flag, preventing unnecessary errors when using require() to import ESM modules.

3. New --module node18 Flag

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Published in JavaScript in Plain English

New JavaScript and Web Development content every day. Follow to join our 3.5M+ monthly readers.

Written by Abhinav Kumar

Software Engineer @Zalando, Living in Germany, Tech enthusiast, Story Teller, Write about my learning and experiences in tech and in life.

No responses yet

Write a response