News

TypeScript Gets Faster, Adds Language Support with Update

The latest version fixes a compiler slowdown caused by the last version.

TypeScript continues to inch closer to a 1.0 version with the release of 0.9.1. The announcement was made by Microsoft's Jonathan Turner on the TypeScript blog.

The upgrade likely to matter most to developers is a speed boost. The last iteration of TypeScript, 0.9.0, included a rewritten compiler and language service. The downside of those improvements was a significant slowdown in the command-line compiler. It was "noticeably slower than in 0.8.3",  Turner wrote. The 0.9.1 release cures that issue, "improving both interactive and compiler performance," he said. In addition, developers working in Windows 8 and 8.1 and using the Visual Studio plugin will see even better speed, since Microsoft is using the latest version of the JavaScript engine Chakra.

Some language features have been added or improved as well, including:

  • New support for the 'typeof' operator in type positions. It provides a way to refer to the type of an expression.
  • Fewer restrictions on using 'this'. It allows classes to contain both methods on the prototype, and callback functions on the instance. "This lets you mix-n-match between 'closure' style and 'prototype' style class member patterns easily," Turner said.
  • A new compiler flag, '--noImplicitAny', has been added. The flag sends a warning when the compiler implicitly infers 'any,' when not explicitly stated in the code. It was an experimental feature in previous TypeScript versions, and became official with 0.9.1.
  • Support for using TypeScript within ASP.NET applications has been improved, although the blog didn't say exactly how. Instead, it implied that more information on that integration would be forthcoming.

The last previous update of TypeScript was 0.9, which was released in June. Visual Studio Magazine columnist Peter Vogel wrote an in-depth look at the changes in 0.9 last month. The biggest one was the addition of generics.

About the Author

Keith Ward is the editor in chief of Virtualization & Cloud Review. Follow him on Twitter @VirtReviewKeith.

comments powered by Disqus

Featured

  • Compare New GitHub Copilot Free Plan for Visual Studio/VS Code to Paid Plans

    The free plan restricts the number of completions, chat requests and access to AI models, being suitable for occasional users and small projects.

  • Diving Deep into .NET MAUI

    Ever since someone figured out that fiddling bits results in source code, developers have sought one codebase for all types of apps on all platforms, with Microsoft's latest attempt to further that effort being .NET MAUI.

  • Copilot AI Boosts Abound in New VS Code v1.96

    Microsoft improved on its new "Copilot Edit" functionality in the latest release of Visual Studio Code, v1.96, its open-source based code editor that has become the most popular in the world according to many surveys.

  • AdaBoost Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the AdaBoost.R2 algorithm for regression problems (where the goal is to predict a single numeric value). The implementation follows the original source research paper closely, so you can use it as a guide for customization for specific scenarios.

  • Versioning and Documenting ASP.NET Core Services

    Building an API with ASP.NET Core is only half the job. If your API is going to live more than one release cycle, you're going to need to version it. If you have other people building clients for it, you're going to need to document it.

Subscribe on YouTube