jsdoc.conf.json 1006 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "opts": {
  3. "encoding": "utf8", // same as -e utf8
  4. "destination": "./o2web/jsdoc/", // same as -d ./out/
  5. "recurse": true, // same as -r
  6. "template" : "./node_modules/tidy-jsdoc",
  7. "prism-theme": "prism-custom"
  8. // "tutorials": "./o2web/tutorials" // same as -u path/to/tutorials
  9. },
  10. "tags": {
  11. "allowUnknownTags": true,
  12. "dictionaries": [
  13. "jsdoc",
  14. "closure"
  15. ]
  16. },
  17. "source": {
  18. "include": ["./o2web/source/x_component_process_Xform","./o2web/source/x_component_cms_Xform"],
  19. "includePattern": ".+\\.js(doc|x)?$",
  20. "excludePattern": "(^|\\/|\\\\)_"
  21. },
  22. "plugins": [
  23. "plugins/markdown",
  24. "plugins/summarize"
  25. ],
  26. "templates": {
  27. "cleverLinks": false,
  28. "monospaceLinks": false
  29. },
  30. "metadata": {
  31. "title": "O2OA前台API"
  32. }
  33. }
  34. //执行命令: jsdoc -c ./o2web/jsdoc.conf.json