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 for Converge360.

comments powered by Disqus

Featured

  • Full Stack Hands-On Development with .NET

    In the fast-paced realm of modern software development, proficiency across a full stack of technologies is not just beneficial, it's essential. Microsoft has an entire stack of open source development components in its .NET platform (formerly known as .NET Core) that can be used to build an end-to-end set of applications.

  • .NET-Centric Uno Platform Debuts 'Single Project' for 9 Targets

    "We've reduced the complexity of project files and eliminated the need for explicit NuGet package references, separate project libraries, or 'shared' projects."

  • Creating Reactive Applications in .NET

    In modern applications, data is being retrieved in asynchronous, real-time streams, as traditional pull requests where the clients asks for data from the server are becoming a thing of the past.

  • AI for GitHub Collaboration? Maybe Not So Much

    No doubt GitHub Copilot has been a boon for developers, but AI might not be the best tool for collaboration, according to developers weighing in on a recent social media post from the GitHub team.

  • Visual Studio 2022 Getting VS Code 'Command Palette' Equivalent

    As any Visual Studio Code user knows, the editor's command palette is a powerful tool for getting things done quickly, without having to navigate through menus and dialogs. Now, we learn how an equivalent is coming for Microsoft's flagship Visual Studio IDE, invoked by the same familiar Ctrl+Shift+P keyboard shortcut.

Subscribe on YouTube