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
Read-only variants of ECMAScript interfaces are currently not eligible for script target suggestions. This is most noticeable with ReadonlyArray, since this type can arise through syntax rather than by referencing the symbol directly.
[1,2,3].toReversed();// ~~~~~~~~~~// Property 'toReversed' does not exist on type 'number[]'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2023' or later.([1,2,3]asconst).toReversed();// ~~~~~~~~~~// Property 'toReversed' does not exist on type 'readonly [1, 2, 3]'.
It would be useful if the suggested lib checks could resolve these in the same way.
π Motivating Example
As above.
π» Use Cases
N/A
The text was updated successfully, but these errors were encountered:
π Search Terms
readonly target library
β Viability Checklist
β Suggestion
Read-only variants of ECMAScript interfaces are currently not eligible for script target suggestions. This is most noticeable with
ReadonlyArray
, since this type can arise through syntax rather than by referencing the symbol directly.It would be useful if the suggested lib checks could resolve these in the same way.
π Motivating Example
As above.
π» Use Cases
N/A
The text was updated successfully, but these errors were encountered: