microsoft / TypeScript-TmLanguage

TextMate grammar files for TypeScript for VS Code, Sublime Text, and Atom.
MIT License
397 stars 125 forks source link

Add `@satisfies` JSDoc tag support #953

Closed DanielRosenwasser closed 1 year ago

DanielRosenwasser commented 1 year ago

TS 5.0 adds support for @satisfies and @overload JSDoc tags. @overload doesn't need any special support, but @satisfies should work the same as @type.

/** @type {string} */
/** @satisfies {string} */

But currently it doesn't:

image

sheetalkamat commented 1 year ago

Closed by #955