How to avoid Global Scope documentation generated by JSDoc for NodeJS functions?

JSdoc documentation generated on my nodejs modules.

/**
 Do something
*/
function doSomething(param1, param2) {
  // blah blah
  ...
}

module.exports.doSomething = doSomething;

      

The JSDoc file generated generated a comment under the Global Scope and I have hundreds of exported functions.

Is there a way to make JSDoc for generated documents grouped by module file names?

+3


source to share





All Articles