Microsoft/TypeScript

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

Open

#61,323 建立於 2025年3月1日

在 GitHub 查看
 (1 留言) (0 反應) (0 負責人)TypeScript (6,726 fork)batch import
Domain: Error MessagesHelp WantedPossible Improvement

倉庫指標

Star
 (48,455 star)
PR 合併指標
 (平均合併 6天 17小時) (30 天內合併 9 個 PR)

描述

🔍 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

貢獻者指南