TypeScript 5 - Smaller, Simpler, Faster
Written by Kay Ewbank   
Monday, 20 March 2023

TypeScript 5.0 has been released with a number of new features aimed at making it smaller, simpler, and faster.

TypeScript is a superset of JavaScript that adds optional static types which can be checked by the TypeScript compiler to catch common errors in your programs. TypeScript can use this information to help you avoid about mistakes like typos, missing arguments, or forgetting to check for null and undefined.

The TypeScript team says TypeScript 5.0 contains lots of powerful changes across its code structure, data structures, and algorithmic implementations. What these all mean is that your entire experience should be faster.

The new version also has an implementation of the new decorators standard and better support for ESM (ECMAScript modules) projects in Node and bundlers. Decorators are an upcoming ECMAScript feature that can be used to customize classes and their members in a reusable way.

TypeScript 4.7 introduced options to model lookup rules for ECMAScript modules in Node.js, but the implementations had a lot of restrictions that other tools don’t really enforce. Most modern bundlers prefer an import condition, and to model how bundlers work, TypeScript 5 has introduced a new strategy that meets this need.

JSDoc functionality has been expanded with the addition of @overload Support in JSDoc. In TypeScript, you can specify overloads for a function to show that a function can be called with different arguments, and possibly return different results. They can restrict how callers can actually use our functions, and refine what results they’ll get back. TypeScript 5 now allows JSDoc to declare overloads with a new @overload tag. Each JSDoc comment with an @overload tag is treated as a distinct overload for the following function declaration.

TypeScript 5 is available now.

 

More Information

TypeScript On NuGet

TypeScript On GitHub

Related Articles

TypeScript 4.7 Adds Node.js ECMAScript Module Support

TypeScript 4.6 Improves Constructors

TypeScript 4.5 Adds Awaited

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

Banner


Android Studio Jellyfish Ready To Use
08/05/2024

Well, as ready as any of the recent Android Studio's have been. This one boasts an AI assistant called Gemini - shame Android Studio isn't as fast to implement as Gemini is to suggest.



Google Releases Vertex AI Agent Builder
06/05/2024

Google has launched Vertex AI Agent Builder, alongside new open-source language models for the Vertex AI platform. The announcements were made at the Google Cloud Next 2024 event.


More News

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Monday, 20 March 2023 )