jsdoc.config.json 686 B

123456789101112131415161718192021222324252627
  1. {
  2. "opts": {
  3. "destination": "docs_new",
  4. "encoding": "utf8",
  5. "package": "package.json",
  6. "recurse": true,
  7. "template": "node_modules/clean-jsdoc-theme",
  8. "theme_opts": {
  9. "homepageTitle": "three.js docs"
  10. }
  11. },
  12. "plugins": [ "plugins/markdown" ],
  13. "source": {
  14. "include": [
  15. "examples/jsm/tsl",
  16. "src/loaders/nodes",
  17. "src/materials/nodes",
  18. "src/nodes",
  19. "src/renderers/common",
  20. "src/renderers/webgpu"
  21. ]
  22. },
  23. "markdown": {
  24. "hardwrap": false,
  25. "idInHeadings": true
  26. }
  27. }
粤ICP备19079148号