有没有办法让 VSCode 从他们的评论行中显示关于 JavaScript 函数的附加智能感知信息?

Is there a way to get VSCode to display addition intellisense information about JavaScript functions from their comment lines?

Visual Studio 代码提供显示有关 JavaScript 模块中函数的有用悬停信息,如下所示:

有没有办法让它在函数上方也显示一个注释行,以便人们可以获得有关所显示函数的附加信息,例如如何使用函数的例子?

我记得在带有 PHPDoc 的 NetBeans 中这是可能的,例如。

使用JS-Doc格式。然后它应该工作。 https://jsdoc.app/

/**
 * Some comment
 */
export const replaceAll = (text: string, search: string, replace: string) => {
    return text.split(search).join(replace);
};