Visual studio code 在vscode中解析jsdoc/tsdoc

Visual studio code 在vscode中解析jsdoc/tsdoc,visual-studio-code,vscode-settings,Visual Studio Code,Vscode Settings,我有这个接口属性: /** * If enabled the log output will be printed locally in console. * The log call line will not be overwritten unless {@link ILoggerConfig.useLoggerProcessors} is true */ printToConsole?: boolean; 在生成的文档中,它使ILOGGERCONIG.useLo

我有这个接口属性:

  /**
   * If enabled the log output will be printed locally in console.
   * The log call line will not be overwritten unless {@link ILoggerConfig.useLoggerProcessors} is true
   */
  printToConsole?: boolean;
在生成的文档中,它使
ILOGGERCONIG.useLoggerProcessors
成为一个可单击的链接,但vscode intellisense没有:

链接部分不会打扰我,但vscode intellisense会保留详细的
{@link ilogergenconfig.useLoggerProcessors}
部分,并且当引用超过2个其他属性/类/方法时,很难读取


我可以让vscode解析注释吗?我已经搜索了一个错误,但没有找到。

这是VS代码1.31中的一个错误。以下问题正在跟踪它:

已经支持JSDocs中的标记链接(但仅支持URL,不支持符号)