microsoft / microsoft/TypeScript
Preserve the jsdoc comments for interface while compiling.
オープン
まだ誰も着手していません。
Awaiting More Feedback
Suggestion
- 主要言語
- Go
- スター
- 111k
- フォーク
- 14.3k
- 平均マージ
- 2日 4時間
- マージ済み PR(30日)
- 132
説明
Suggestion
🔍 Search Terms
tsc jsdoc
✅ Viability Checklist
My suggestion meets these guidelines:
- ✅ 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 feature would agree with the rest of TypeScript's Design Goals.
⭐ Suggestion
Add a configuraion for preserving the jsdoc comments for interface while compiling.
📃 Motivating Example
Example
My .ts file like this:
// test.ts
/**
* @typedef {Object} ITest - For test
* @property {string} a
*/
export interface ITest {
a: string
}
/**
* @function print - print ITest
* @params {ITest} d
*/
export function print (d: ITest): void {
console.log(d.a)
}
while tsc compiling, the .js like this:
// test.js
/**
* @typedef {Object} ITest - For test
* @property {string} a
*/
/**
* @function print - print ITest
* @params {ITest} d
*/
export function print(d) {
console.log(d.a);
}
💻 Use Cases
There are two case as I can see.
- Preverse comments for files.
- Use jsdoc comments to mark interfaces or types on .ts and generate doc through jsdoc comments on .js
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず、提供された test.ts の例に対して tsc を実行し、生成された test.js と要求された出力を比較します。設定の動作を定義し、実行時の出力を変更せずに interface と type の JSDoc コメントが保持されることを確認します。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- javascript, typescript
- 領域
- compilers
- issue の種類
- 機能追加
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- 説明が足りない
- 初心者へのやさしさ
- 25/100