0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

TypeScript: TypeDoc で Class コメントが出てこないと思ったら、無関係な tag を設定していたからだった

Posted at

背景

TypeScript で TypeDoc を利用しようと試行してたところ全然コメントが出ない!という問題にであった

が・・知ってれば阿保らしいミスだと思います。ということで記録まで

原因

以下のように、class に対して、module タグをつけてたのが原因

ダメな例
/**
 * くらす
 * 
 * @class SampleClass
 * @class SampleClass2
 * @module SampleModule
 */
export class SampleClass {
    public Name = "Sample";

    private Nickname = "Simple";
}

二重定義したら、二重に出るだけ

最初はこれかと思ったら・・二重定義しても問題なかった
image.png

あとがき

付けていい場所、悪い場所、の分類はまだ出来てないけど・・
その前に、TypeDoc vs TSDoc という悩みの種が出てきたのが頭痛の種・・

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?