TypeScript, an extension for JavaScript that was originally developed by Microsoft but now resides on Github with a wider range of developers, was recently updated. TypeScript 1.7 brings with it support for ES6 async functions.
The support for async functions for ECMAScript 6 (ES6) is part of a long-standing drive to align TypeScript with ES6. In a post back in 2014 on the TypeScript blog, Jonathan Turner said that:
"Aligning with ES6 allows TypeScript to become a superset of the next JavaScript, opening the way for working with new code patterns like destructuring, string templates, promises, iterators and more in addition to features TypeScript already supports, such as classes and lambda functions."
The TypeScript roadmap shows that the developers are planning to add async/await support for ES3 and ES5 by version 2.0. The async support is enabled by default, and should widen the usability of TypeScript as it means ES6 generators such as node.js v4 and above will be able to make use of asynchronous methods without having to wait for the operations to complete.
If you set up your tsconfig.json like this:
"compilerOptions": {
"target": "ES6",
"module": "commonjs"
}
The compiled JavaScript output can then run in Node.js:
In addition to the async support, the new version adds support for polymorphic 'this' typing. The feature has been added to make TypeScript offer better support for the sort of coding where you want to return the current object (i.e. this) from a method to create fluent-style APIs. Until now, the difficulty has been in extending types, because TypeScript 'forgot' the extended types. As is explained on the TypeScript wiki:
"TypeScript now infers this to have a special type called this whenever inside an instance method of a class. The this type is written as so, and basically means "the type of the left side of the dot in a method call"."
Adding the support has meant TypeScript 1.7 has made changes in inferring the type from 'this', which means some code could be broken. In a class, the type of the value this will be inferred to the this type, and subsequent assignments from values of the original type can fail. There's a code sample with the recommended work around, along with a list of other potentially breaking changes, on GitHub.
The final major improvement is the addition of the exponentiation operator. The ECMAScript committee recently moved this to stage 3, so the TypeScript developers decided it was ready for TypeScript to adopt, and added support for it in TypeScript 1.7, meaning you'll be able to use the ** and **= operators for raising to a power.
The new version is available on Github.
More Information
Related Articles
TypeScript Goes Light, Moves To GitHub
TypeScript Fully Accepted into Visual Studio
Getting Started With TypeScript
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, Google+ or Linkedin.
The Pico Gets Zephyr And Rust Support
30/10/2025
Zephyr, a real time operating system and Rust, a memory safe language, are both hot topics at the moment and Raspberry Pi has decided they are hot enough to support in its extension for VS Code. [ ... ]
Formae Launched As Terraform Alternative
22/10/2025
Platform Engineering Labs has launched formae, an open-source Infrastructure as Code platform built to replace state-driven systems like Terraform.
- GitHub Copilot CLI And Spaces In Preview
- IBM Launches Granite Version 4.0 and Granite-Docling
- GitHub Announces Agent HQ Organizer
- Windows XP Crocs Now On Sale
- Robot Army Video As Robots Shipped En Masse
- PyTorch Team Introduces Cluster Programming
- C# Could Overtake Java in TIOBE Index
- Move Fast And Fix Things - In Praise Of Rust
- The Fuss About Fil-C...
- Memgraph Adds AI Graph Toolkit
- Scouting America Launches AI And Cybersecurity Badges
- Exploring The Microsoft Agent Framework
- Deepnote Goes OpenSource
Comments
or email your comment to: comments@i-programmer.info