jsdoc.conf.json 879 B

1234567891011121314151617181920212223242526272829
  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": "templates/default", // same as -t templates/default
  7. // "tutorials": "path/to/tutorials" // same as -u path/to/tutorials
  8. },
  9. "tags": {
  10. "allowUnknownTags": true
  11. },
  12. "source": {
  13. "include": ["./o2web/source/x_component_process_Xform"],
  14. "includePattern": ".+\\.js(doc|x)?$",
  15. "excludePattern": "(^|\\/|\\\\)_"
  16. },
  17. "plugins": [
  18. "plugins/markdown",
  19. "plugins/summarize"
  20. ],
  21. "templates": {
  22. "cleverLinks": false,
  23. "monospaceLinks": false,
  24. "default": {
  25. "outputSourceFiles": true
  26. }
  27. }
  28. }
  29. //执行命令: jsdoc -c ./o2web/jsdoc.conf.json