无论如何要保留 typescript4.0 中的界面注释?

问题描述

我的 .ts 文件如下:

/**
 * @typedef {Object} ITest 
 * @property {string} a
 */
export interface ITest {
  a: string
}

/**
 * @function test
 * @params {string} a
 */
export function test (a: string): void {
  console.log('a',a)
}

当我使用 tsc 将此文件编译为 .js 时,界面注释将被删除

无论如何要在 .js 中保留此注释

tsc 的版本是4.1.3

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)