Microsoft/TypeScript

Suggestion: Support readonly interfaces in `getSuggestedLibFor...`

Open

#61.323 geöffnet am 1. März 2025

Auf GitHub ansehen
 (1 Kommentar) (0 Reaktionen) (0 zugewiesene Personen)TypeScript (6.726 Forks)batch import
Domain: Error MessagesHelp WantedPossible Improvement

Repository-Metriken

Stars
 (48.455 Stars)
PR-Merge-Metriken
 (Durchschn. Merge 6T 17h) (9 gemergte PRs in 30 T)

Beschreibung

🔍 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

Contributor Guide