News

TypeScript 5.8 Improves Type Checking, Conditional Feature Delayed to 5.9

Microsoft shipped TypeScript 5.8 with improved type checking in some scenarios, but thorny problems caused the dev team to delay related work to the next release.

The plan was for TypeScript 5.8 to include improved conditional return type checking, but due to complexities, those changes were deferred to version 5.9. However, 5.8 does retain a related improvement: more detailed checks within function return expressions, which was not previously announced.

As we reported in our coverage of the beta release, one of the features the team was planning was summarized like this:

Checked Returns for Conditional and Indexed Access Types: TypeScript 5.8 enhances type inference by allowing functions to have return types that depend on their parameters. This means that the return type can be more precisely determined based on the input, reducing type errors and improving code clarity.

However, Daniel Rosenwasser, principal product manager, explained why that was dropped in a Feb. 28 announcement. "Based on some of the limitations and changes we wanted to make, we decided to iterate on the feature with the goal of shipping it in TypeScript 5.9," he said. "However, as part of this work, we added more granular checks for branches within return expressions. This enhancement was not documented in the beta post, but will remain in TypeScript 5.8."

That enhancement allows TypeScript to more accurately catch bugs in conditional expressions within return statements, leading to more robust code. Specifically, each branch of the conditional is now checked against the function's declared return type, which can help catch subtle bugs where the wrong type might be returned in one of the branches, preventing the any type from masking the issue.

Other highlights of TypeScript 5.8, which saw no major changes made since the release candidate, include:

  • Improved ECMAScript Module Support: Developers can now use require() to import ECMAScript modules when using the --module nodenext flag. This makes it easier to work with both CommonJS and ESM in Node.js projects, improving interoperability between module systems.
  • New --erasableSyntaxOnly Compiler Option: This new flag ensures that TypeScript-specific syntax without runtime effects can be removed safely. It aligns with Node.js's experimental support for running TypeScript files directly, making it easier to transition from TypeScript to JavaScript execution.
  • Performance Improvements: TypeScript 5.8 includes optimizations that speed up type checking and compilation times, resulting in a smoother development experience, especially for large codebases.
  • Better Inference for Generics: The TypeScript compiler now makes smarter guesses about generic types, reducing the need for explicit type annotations and making code more concise while maintaining strong type safety.

The dev team is now working on TypeScript 5.9, with no specific features mentioned for that release. Early versions of that release can be tried out in nightly builds that can be installed via npm or the VS Code TypeScript Nightly extension, which is nearing 5 million installs.

About the Author

David Ramel is an editor and writer at Converge 360.

comments powered by Disqus

Featured

  • Windows Community Toolkit v8.2 Adds Native AOT Support

    Microsoft shipped Windows Community Toolkit v8.2, an incremental update to the open-source collection of helper functions and other resources designed to simplify the development of Windows applications. The main new feature is support for native ahead-of-time (AOT) compilation.

  • New 'Visual Studio Hub' 1-Stop-Shop for GitHub Copilot Resources, More

    Unsurprisingly, GitHub Copilot resources are front-and-center in Microsoft's new Visual Studio Hub, a one-stop-shop for all things concerning your favorite IDE.

  • Mastering Blazor Authentication and Authorization

    At the Visual Studio Live! @ Microsoft HQ developer conference set for August, Rockford Lhotka will explain the ins and outs of authentication across Blazor Server, WebAssembly, and .NET MAUI Hybrid apps, and show how to use identity and claims to customize application behavior through fine-grained authorization.

  • Linear Support Vector Regression from Scratch Using C# with Evolutionary Training

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the linear support vector regression (linear SVR) technique, where the goal is to predict a single numeric value. A linear SVR model uses an unusual error/loss function and cannot be trained using standard simple techniques, and so evolutionary optimization training is used.

  • Low-Code Report Says AI Will Enhance, Not Replace DIY Dev Tools

    Along with replacing software developers and possibly killing humanity, advanced AI is seen by many as a death knell for the do-it-yourself, low-code/no-code tooling industry, but a new report belies that notion.

Subscribe on YouTube