ARN

New TypeScript operator finds coding mistakes

TypeScript 4.9’s ‘satisfies’ operator validates that the type of an expression matches some type, catching many possible errors.

Microsoft’s TypeScript 4.9, a planned upgrade to the popular, strongly typed language that builds on JavaScript, is now in beta, featuring a satisfies operator that can catch errors.

With satisfies, developers can validate that the type of an expression matches some type, without changing the resulting type of the expression. This operator can be used to catch possible errors, such as ensuring that an object has all the keys of some type, but no more than that.

Also in TypeScript 4.9, the in operator has been made more powerful when narrowing types that do not list the property. Instead of leaving them as is, the language will intersect their types with Record<”property-key-being-checked”, unknown>.

Introduced on September 23, the TypeScript 4.9 beta can be downloaded through NuGet or via NPM using the following command:

npm install -D typescript@beta

Other new capabilities and improvements in the TypeScript 4.9 beta include an update that file watching is powered by file system events by default, only falling back to polling if developers fail to set up event-based watchers. This should provide a less resource-intensive experience when running –-watch mode or running with a TypeScript-powered editor like Visual Studio Code or Visual Studio.

Also, Promise.resolve now uses the Awaited type to unwrap Promise-like types passed to it. This means that it more often returns the right Promise type, but that improved type can break existing code if it was expecting any or unknown instead of a Promise.

Furthermore, TypeScript now errors on direct comparisons against the NaN value and will suggest some variation of Number.isNAN instead.

TypeScript has been on an upswing. CircleCI’s 2022 State of Software Delivery report found that TypeScript had surpassed JavaScript as the most popular devops language. CircleCI cited developer-friendliness as a reason for the surge.

A production release of TypeScript 4.9 is due in November, preceded by a release candidate. TypeScript 4.8 shipped on August 25, with correctness and consistency improvements as well as file watching fixes.