microsoft / microsoft/TypeScript
Add support for `@file` jsdoc tag to describe a module
还没有人认领这个 Issue。
- 主要语言
- Go
- 星标
- 111k
- 派生
- 14.3k
- 平均合并
- 2 天 4 小时
- 30 天内合并 PR
- 132
描述
🔍 Search Terms
fileoverview
✅ Viability Checklist
- This wouldn't be a breaking change in existing TypeScript/JavaScript code
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, new syntax sugar for JS, etc.)
- This isn't a request to add a new utility type: https://github.com/microsoft/TypeScript/wiki/No-New-Utility-Types
- This feature would agree with the rest of our Design Goals: https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals
⭐ Suggestion
JSDoc supports the @file tag to document a file (module). Synonyms are @fileoverview and @overview.
Currently TypeScript allows you to document a module like this:
/**
* This comment describes `some-module`.
*/
declare module 'some-module' {
/**
* This comment describes `fn`.
*/
export function fn(): unknown;
}
This description shows up when you hover over an import of some-module.
However, it’s generally considered more idiomatic avoid declare module:
/**
* This comment describes `fn`.
*/
export function fn(): unknown;
In this case, there’s not way to describe the module.
I believe the @file tag provides a perfect way to describe a module. So the following code would be equivalent to the original example above.
/**
* @file
* This comment describes `some-module`.
*/
/**
* This comment describes `fn`.
*/
export function fn(): unknown;
I noticed that current module descriptions show up on hover, but not in autocomplete. I believe it would be nice to add support for that too.
📃 Motivating Example
TypeScript now supports the @file tag to describe a module.
💻 Use Cases
- What do you want to use this for?
I would describe modules. It would be nice to generate documentation from source as well.
- What shortcomings exist with current approaches?
It can’t be done without declare module.
- What workarounds are you using in the meantime?
I don’t document modules.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先跟踪现有模块描述的收集方式以及它们如何显示在 hover 中,然后检查 JSDoc 处理和 autocomplete 路径。确定 @file、@fileoverview 和 @overview 标签应如何在没有 declare module 的情况下识别模块。当模块描述对所示的导出模式生效,并且在 hover 和 autocomplete 中一致显示时,即表示完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- javascript, typescript
- 领域
- developer-experience, documentation
- Issue 类型
- 功能
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 冷清
- 描述清晰度
- 基本清楚
- 新手友好度
- 52/100