Last active
August 13, 2020 17:53
-
-
Save krnd/6c254299509f6d63d672a029ff1eb01e to your computer and use it in GitHub Desktop.
javascript-jsdoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"plugins": [ | |
"plugins/markdown" | |
], | |
"recursionDepth": 10, | |
"source": { | |
"include": ["./"], | |
"exclude": [], | |
"includePattern": ".+\\.js(doc)?$", | |
"excludePattern": "(^|\\/|\\\\)--" | |
}, | |
"sourceType": "module", | |
"opts": { | |
"destination": "./doc", | |
"template": "node_modules/docdash", | |
"recurse": true | |
}, | |
"tags": { | |
"allowUnknownTags": false, | |
"dictionaries": ["jsdoc", "closure"] | |
}, | |
"templates": { | |
"cleverLinks": true | |
}, | |
"markdown": { | |
"tags": ["todo"], | |
"excludeTags": ["author"] | |
}, | |
"docdash": { | |
"static": true, | |
"sort": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment