I have foo/defaults.yaml
file in my project. Then there is foo.js
that uses data from this file.
I would like to make a JSDoc comment the following way:
/** Actually launches real Foo missiles. The default values are read from @link foo/defaults.yaml. */
async launchFooMissiles() {
await openHatch()
const defaults = await readTheDefaults('foo/defaults.yaml')
...
}
Is there a way to specify the reference so there is a clickable link in the tooltip? You can have symbols clickable, such as @see missileHelper
and many other ways, but what about files?