TypeScript 7 VS Code extension: let extensions that serve their language through content mappers opt out of the tsserver-plugin warning

未关闭
#64,356 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

评估

难度
3/5
预计耗时
1-2 天
新手友好度
65/100
Issue 类型
功能
描述清晰度
基本清楚
活跃度
活跃
技术栈
typescript, vscode

调研方向

Start in packages/vscode-typescript/src/extension.ts at warnAboutTsServerPlugins, then trace how typescriptServerPlugins contributions are read and represented. Add a contribution-level way for content-mapped extensions to opt out of this warning, and verify that such extensions are skipped while ordinary TypeScript server plugins still produce the warning.

由索引模型根据 Issue 内容生成。

描述

🔎 Search Terms
  • TypeScript server plugins from the will not be loaded because TypeScript 7 is enabled globally
  • warnAboutTsServerPlugins typescriptServerPlugins content mapper
🕗 Version & Regression Information
  • The TypeScript 7 VS Code extension built from packages/vscode-typescript at f29aeb9 (main, 2026-09-16), VS Code 1.138.0, macOS 26.6 x64
  • The warning and its exemption list are unchanged since the published TypeScriptTeam.native-preview 0.20260708.2
⏯ Playground Link

n/a (VS Code extension behaviour)

💻 Code

warnAboutTsServerPlugins in packages/vscode-typescript/src/extension.ts warns once per session, when js/ts.experimental.useTsgo is set at user level, for every installed extension whose manifest contributes typescriptServerPlugins:

TypeScript server plugins from the "TSRX.tsrx-vscode-plugin" extension will not be loaded because TypeScript 7 is enabled globally.

The only exemption is the hardcoded suppressedPluginExtensionIds set (github.copilot, github.copilot-chat).

An extension for a content-mapped language needs both mechanisms: a typescriptServerPlugins contribution so that VS Code's built-in TypeScript extension (TypeScript 5.9/6, tsserver) can serve its files, and a content mapper (declared in the project's tsconfig.json under contentMappers) so that TypeScript 7 can. When TypeScript 7 is enabled, the plugin is intentionally not needed: the mapper takes over. The warning is then accurate but misleading, since the extension's language works fine.

🙁 Actual behavior

Every user of such an extension who enables TypeScript 7 globally sees a warning suggesting the extension is broken under TypeScript 7, with "Disable Native Preview in Workspace" offered as a remedy, although nothing is lost.

🙂 Expected behavior

A way for an extension to declare that its language is served through content mappers on TypeScript 7, for example a per-plugin flag on the contribution ("typescriptServerPlugins": [{ "name": "...", "contentMappers": true }] or similar), which the warning would then skip, as it skips the hardcoded ids today.

Additional information about the issue

Found while wiring the TSRX VS Code extension (tsrx-org/tsrx#135); its README currently tells users to dismiss the warning with "Don't Show Again".

主要语言
Go
星标
111k
派生
14.4k
平均合并
1 天 15 小时
30 天内合并 PR
106

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

microsoft/TypeScript 的其他 Issue

查看 microsoft/TypeScript 的全部 Issue

相似的 Issue

更多 Go Issue

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。