jsdoc.json 563 B

123456789101112131415161718192021222324252627
  1. {
  2. "tags": {
  3. "allowUnknownTags": false
  4. },
  5. "source": {
  6. "include": "./",
  7. "includePattern": "(.js|README.md)$",
  8. "excludePattern": "(node_modules/|docs|dist|examples|libs|tests)"
  9. },
  10. "plugins": [
  11. "node_modules/jsdoc/plugins/markdown"
  12. ],
  13. "markdown": {
  14. "tags": ["param", "deprecated", "description"]
  15. },
  16. "opts": {
  17. "template": "node_modules/docdash/",
  18. "encoding": "utf8",
  19. "destination": "docs/",
  20. "recurse": true,
  21. "verbose": true
  22. },
  23. "templates": {
  24. "cleverLinks": false,
  25. "monospaceLinks": false
  26. }
  27. }