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

  • Mastering Blazor Authentication and Authorization

    At the Visual Studio Live! @ Microsoft HQ developer conference set for August, Rockford Lhotka will explain the ins and outs of authentication across Blazor Server, WebAssembly, and .NET MAUI Hybrid apps, and show how to use identity and claims to customize application behavior through fine-grained authorization.

  • Linear Support Vector Regression from Scratch Using C# with Evolutionary Training

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the linear support vector regression (linear SVR) technique, where the goal is to predict a single numeric value. A linear SVR model uses an unusual error/loss function and cannot be trained using standard simple techniques, and so evolutionary optimization training is used.

  • Low-Code Report Says AI Will Enhance, Not Replace DIY Dev Tools

    Along with replacing software developers and possibly killing humanity, advanced AI is seen by many as a death knell for the do-it-yourself, low-code/no-code tooling industry, but a new report belies that notion.

  • Vibe Coding with Latest Visual Studio Preview

    Microsoft's latest Visual Studio preview facilitates "vibe coding," where developers mainly use GitHub Copilot AI to do all the programming in accordance with spoken or typed instructions.

  • Steve Sanderson Previews AI App Dev: Small Models, Agents and a Blazor Voice Assistant

    Blazor creator Steve Sanderson presented a keynote at the recent NDC London 2025 conference where he previewed the future of .NET application development with smaller AI models and autonomous agents, along with showcasing a new Blazor voice assistant project demonstrating cutting-edge functionality.

Subscribe on YouTube