jsdoc.config.json 1023 B

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