You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TypeScript recently added ariaDescription as a type field in its automatically generated DOM typings in this commit.
Updating to TypeScript 5.4+ throws error TS2741: Property 'ariaDescription' is missing in type 'ElementInternals & IElementInternals' but required in type 'ElementInternals'
The text was updated successfully, but these errors were encountered:
The custom elements manifest analyzer has recently released patch version 0.9.4 that relies on TypeScript 5.4 making it harder for web component projects to stay on TypeScript 5.3. I've opened and tested PR #129 that I believe resolves this issue.
TypeScript recently added
ariaDescription
as a type field in its automatically generated DOM typings in this commit.Updating to TypeScript 5.4+ throws
error TS2741: Property 'ariaDescription' is missing in type 'ElementInternals & IElementInternals' but required in type 'ElementInternals'
The text was updated successfully, but these errors were encountered: