Jsdoc使用循环逻辑创建文档

时间:2020-04-08 15:55:37

标签: jsdoc jsdoc3

我有三个类[A,B,C] A继承自B,B继承自C。当我运行jsdoc生成时,我得到以下文件:

  • A.html
  • AAB.hmtl
  • AABC.html
  • AABBC.html
  • AB.html
  • ABC.html
  • ABBC.html
  • C.html
  • B.html
  • BC.html
  • BBC.html

我只希望A.html B.html和C.html中每个文件的扩展链接链接到其他文件。

A的代码类似于

import B from "./B"

/**
 * Class description for A
 * @extends B
 */
export class A extends B {
    //Class code here
}

B

import C from "./C"

/**
 * Class description for A
 * @extends C
 */
export class B extends C {
    //Class code here
}

C

/**
 * Class description for C
 */
export class C {
    //Class code here
}

我正在执行的import export结构是否有问题,这破坏了jsdoc?该项目完全是为浏览器实现而构建的,并且正在使用webpack / babel转换为IE兼容性。

0 个答案:

没有答案