I have javascript file which contains a lot of global vars that are commented, but JSDoc keeps telling there is "Nothing to document, exiting".
Here is a sample:
/**
* Name of the clients list
* @type String
* @final
*/
var CLIENTS_LIST_NAME = "Client";
Is there a way to generate documentation for such a .js file?