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 at Converge 360.

comments powered by Disqus

Featured

  • Hands On: New VS Code Insiders Build Creates Web Page from Image in Seconds

    New Vision support with GitHub Copilot in the latest Visual Studio Code Insiders build takes a user-supplied mockup image and creates a web page from it in seconds, handling all the HTML and CSS.

  • Naive Bayes Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the naive Bayes regression technique, where the goal is to predict a single numeric value. Compared to other machine learning regression techniques, naive Bayes regression is usually less accurate, but is simple, easy to implement and customize, works on both large and small datasets, is highly interpretable, and doesn't require tuning any hyperparameters.

  • VS Code Copilot Previews New GPT-4o AI Code Completion Model

    The 4o upgrade includes additional training on more than 275,000 high-quality public repositories in over 30 popular programming languages, said Microsoft-owned GitHub, which created the original "AI pair programmer" years ago.

  • Microsoft's Rust Embrace Continues with Azure SDK Beta

    "Rust's strong type system and ownership model help prevent common programming errors such as null pointer dereferencing and buffer overflows, leading to more secure and stable code."

  • Xcode IDE from Microsoft Archrival Apple Gets Copilot AI

    Just after expanding the reach of its Copilot AI coding assistant to the open-source Eclipse IDE, Microsoft showcased how it's going even further, providing details about a preview version for the Xcode IDE from archrival Apple.

Subscribe on YouTube

Upcoming Training Events