News

TypeScript 3.0 Ships

TypeScript 3.0 Ships

Less than three weeks since the release candidate was unveiled, Microsoft has shipped the final TypeScript 3.0 release.

The open source programming language is primarily developed and maintained by Microsoft, providing a strict syntactical superset of JavaScript with the addition of optional static typing.

While using types can help with the authoring experience, the TypeScript compiler actually emits clean readable JavaScript that runs in any ECMAScript runtime -- such as browsers and Node.js -- with constructs such as type declarations and annotations removed.

"At its core, this experience means analyzing your code to catch things like bugs and typos before your users run into them; but it brings more than that," Microsoft's Daniel Rosenwasser said in a post yesterday (July 30) announcing v3.0. "Thanks to all that information and analysis TypeScript can provide a better authoring experience, providing code completion and navigation features like Find all References, Go to Definition, and Rename in your favorite editor."

TypeScript 3.0 introduces few breaking changes from its preceding versions, Microsoft said, which means it should make for an easy upgrade.

Among new features, Rosenwasser highlighted new project reference functionality, designed to better support various project scenarios, such as multiple folders with a variety of interdependent and shared code strategies.

"Project references allow TypeScript projects to depend on other TypeScript projects –- specifically, allowing tsconfig.json files to reference other tsconfig.json files," Rosenwasser said. "Specifying these dependencies makes it easier to split your code into smaller projects, since it gives TypeScript (and tools around it) a way to understand build ordering and output structure. That means things like faster builds that work incrementally, and support for transparently navigating, editing, and refactoring across projects. Since 3.0 lays the foundation and exposes the APIs, any build tool should be able to provide this."

The new version also introduces new support for operating on parameter lists, new types that enforce explicit checks, improved JSX support (JSX is a syntax extension integral to React.js), a better error UX and much more, Rosenwasser said.

Detail on these and other new functionality can be found in our coverage of the release candidate, the open source documentation, the project's "what's new" section of its GitHub site and in Rosenwasser's post.

TypeScript 3.0 can be installed through NuGet or the npm package manager.

Rosenwasser said developers can also get editor support for:

"Going forward, we foresee bringing more value to the type system and tooling experience, polishing the existing work on project references, and making TypeScript (both the language and the project) more approachable by whatever means we can," Rosenwasser said. "But in addition to that, we want to explore what we can do to empower more tool authors and users in the JavaScript community – to bring value to users who could still get value from using TypeScript even without directly using TypeScript."

The TypeScript roadmap provides more guidance on what's coming up for the language.

About the Author

David Ramel is an editor and writer at Converge 360.

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