jsdoc.json 701 B

12345678910111213141516171819202122232425262728
  1. {
  2. "opts": {
  3. "template": "node_modules/better-docs"
  4. },
  5. "tags": {
  6. "allowUnknownTags": true
  7. },
  8. "plugins": [
  9. "node_modules/better-docs/typescript",
  10. "node_modules/better-docs/component",
  11. "node_modules/better-docs/category",
  12. "plugins/markdown"
  13. ],
  14. "source": {
  15. "include": [
  16. "./App.tsx",
  17. "./src",
  18. "./src/navigation",
  19. "./src/components",
  20. "./src/components/Auth",
  21. "./src/components/Auth/Registration",
  22. "./src/contexts",
  23. "./src/hooks",
  24. "./src/stores"
  25. ],
  26. "includePattern": "\\.(jsx|js|ts|tsx)$"
  27. }
  28. }