- I have the following project structure:
- index.js
- utils
    - checkSFZH.js
    
    - isEqual.jsindex.js files export all files
import checkSFZH from "./utils/checkSFZH";
import isEqual from "./utils/isEqual";
export{
    checkSFZH,
    isEqual
}the isEqual.js file is as follows:
export default function isEqual(){
    ...
}- what I use with the jsdoc, template is that the index.html generated by jaguarjs-jsdoc, is blank. What I want is to be able to generate index navigation. What should I do?
jsdoc ./utils -t ./node_modules/jaguarjs-jsdoc