jsdoc.config.json 909 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "opts": {
  3. "destination": "docs_new",
  4. "encoding": "utf8",
  5. "package": "package.json",
  6. "recurse": true,
  7. "template": "utils/docs/template"
  8. },
  9. "plugins": [ "plugins/markdown" ],
  10. "source": {
  11. "include": [
  12. "examples/jsm/tsl",
  13. "src/cameras",
  14. "src/core/Object3D.js",
  15. "src/core/EventDispatcher.js",
  16. "src/extras",
  17. "src/helpers",
  18. "src/loaders/nodes",
  19. "src/loaders/Loader.js",
  20. "src/materials/nodes",
  21. "src/materials/Material.js",
  22. "src/nodes",
  23. "src/math",
  24. "src/renderers/common",
  25. "src/renderers/webgpu" ,
  26. "src/scenes" ,
  27. "src/textures/Texture.js"
  28. ],
  29. "exclude": [
  30. "src/extras/PMREMGenerator.js"
  31. ]
  32. }
  33. }
粤ICP备19079148号