Skip to content

Suggestion: Support readonly interfaces in getSuggestedLibFor...Β #61323

Open
@Renegade334

Description

@Renegade334

πŸ” 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.

[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] as const).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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Help WantedYou can do thisPossible ImprovementThe current behavior isn't wrong, but it's possible to see that it might be better in some cases

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions