News

What's New in TypeScript 3.0 Release Candidate

Microsoft's TypeScript team just shipped the release candidate for the new TypeScript 3.0 -- scheduled for final release later this month -- incorporating many new features dealing with project references, a new unknown type and more.

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.

Along the way to TypeScript 3.0, the dev team has added conditional types in v2.8 and code editor functionality in v2.9.

In the new TypeScript 3.0 RC, announced today (July 12), the team highlighted improved project reference functionality, using tuples to extract and spread parameter lists -- which also required richer tuple types -- a new unknown type and support for defaultProps, a React.js construct.

The project reference improvements aim make it easier to work with TypeScript projects that depend on other projects. By specifying dependencies in the tsconfig.json file, developers can more easily split their code into smaller projects and rest assured of the correct build ordering and output structure. "That means things like faster builds that work incrementally, and support for transparently navigating, editing, and refactoring across projects," the team said in a post. "Since 3.0 lays the foundation and exposes the APIs, any build tool should be able to provide this."

New functionality for extracting and spreading parameter lists with tuples, meanwhile, means much less overloading to account for functions of varying parameter lengths. Previously, different overloads had to be written out to support functions with different numbers of parameters -- one for each length.

"TypeScript 3.0 allows us to better model scenarios like these by now allowing rest parameters to be generic, and inferring those generics as tuple types," the team said.

That functionality, in turn, demanded richer tuple types to model scenarios such as optional parameters at the end of a parameter list, a final parameter that can be a rest parameter and empty parameter lists.

The new unknown type is like the existing any type, but it can accommodate APIs that use a variable of any value but require type checking.

"Much like any, any value is assignable to unknown; however, unlike any, you cannot access any properties on values with the type unknown, nor can you call/construct them. Furthermore, values of type unknown can only be assigned to unknown or any," the post said.

Finally, Microsoft highlighted support for the JSX defaultProps used in React. React's defaultProps let developers define default values for props in the creation of a component, such as a source for an Image component. TypeScript 3.0 "supports a new type alias in the JSX namespace called LibraryManagedAttributes. Despite the long name, this is just a helper type that tells TypeScript what attributes a JSX tag accepts. The short story is that using this general type, we can model React's specific behavior for things like defaultProps and, to some extent, propTypes."

According to the TypeScript roadmap, TypeScript 3.0 is scheduled to be released in its final form this month.

"We're looking to get any and all feedback from this RC to successfully ship TypeScript 3.0 proper, so if you'd like to give it a shot now, you can get the RC through NuGet, or use npm," the dev team said.

About the Author

David Ramel is an editor and writer for Converge360.

comments powered by Disqus

Featured

  • 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.

  • .NET 9 Preview 3: 'I've Been Waiting 9 Years for This API!'

    Microsoft's third preview of .NET 9 sees a lot of minor tweaks and fixes with no earth-shaking new functionality, but little things can be important to individual developers.

  • Data Anomaly Detection Using a Neural Autoencoder with C#

    Dr. James McCaffrey of Microsoft Research tackles the process of examining a set of source data to find data items that are different in some way from the majority of the source items.

  • What's New for Python, Java in Visual Studio Code

    Microsoft announced March 2024 updates to its Python and Java extensions for Visual Studio Code, the open source-based, cross-platform code editor that has repeatedly been named the No. 1 tool in major development surveys.

Subscribe on YouTube