TypeScript 4.7 Adds Node.js ECMAScript Module Support
Written by Kay Ewbank   
Monday, 06 June 2022

TypeScript 4.7 has been released with improvements including ECMAScript module support in Node.js, instantiation expressions, and control-flow analysis for computed properties.

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 headline improvement in the new release is the ECMAScript module support in Node.js. The developers of Node.js have been working for several years to add support for ECMAScript modules (ESM). The work has taken so long because it's been difficult to achieve, because the Node.js ecosystem is built on a different module system called CommonJS (CJS). Support for ESM in Node.js was largely implemented in Node.js 12, and TypeScript now adds support for ESM in Node.js.

The addition of support for control-flow analysis for computed properties means that TypeScript 4.7 now analyzes the type of computed properties and narrows them correctly. ontrol-Flow Analysis for Bracketed Element Access

TypeScript 4.7 also now narrows the types of element accesses when the indexed keys are literal types and unique symbols.

The new release has also added control over module detection.This overcomes the problem incurred by the introduction of modules to JavaScript, specifically the ambiguity between existing "script" code and the new module code. JavaScript code in a module runs slightly differently, and has different scoping rules, so tools have to make decisions as to how each file runs. TypeScript now deals with this correctly.

Other improvements include snippet completions for object literal methods; a change to Organize Imports so it recognizes groups and handles them correctly; and the ability to perform typeof queries on private fields.

TypeScript 4.7 is available now.

More Information

TypeScript On NuGet

TypeScript On GitHub

Related Articles

TypeScript 4.5 Adds Awaited

TypeScript 4.4 Improves Control Flow Analysis

TypeScript 4.3 Adds Separate Property Write Types

TypeScript 4.2 Release Candidate Available

New TypeScript Website Launched

TypeScript 4.1 Adds Temporal Literal Types

 

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


Rust Foundation Announces Safety-Critical Consortium
21/06/2024

The Rust Foundation, the nonprofit organization dedicated to supporting and sustaining the Rust programming language, has announced a Safety-Critical Rust Consortium along with industry partners inclu [ ... ]



Does AI Copy Code - Lawsuit Says No
10/07/2024

Are we worried about AI code assistants? Well some of us were worried and offended enough to take GitHub/ Microsoft and Open AI to court over code copying by GitHub Copilot. But the judge came down on [ ... ]


More News

kotlin book

 

Comments




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