typedoc.json 784 B

12345678910111213141516171819202122232425
  1. {
  2. "$schema": "https://typedoc.org/schema.json",
  3. "out": "docs/content/api",
  4. "plugin": ["typedoc-plugin-markdown", "typedoc-plugin-frontmatter", "./typedoc.plugin.mjs"],
  5. "excludeExternals": true,
  6. "disableSources": true,
  7. "readme": "none",
  8. "hidePageHeader": true,
  9. "hideBreadcrumbs": true,
  10. "hideGroupHeadings": true,
  11. "hidePageTitle": true,
  12. "expandObjects": true,
  13. "expandParameters": false,
  14. "blockTagsPreserveOrder": ["@example", "@deprecated"],
  15. "useCodeBlocks": true,
  16. "indexFormat": "table",
  17. "parametersFormat": "table",
  18. "classPropertiesFormat": "table",
  19. "enumMembersFormat": "table",
  20. "typeDeclarationFormat": "table",
  21. "propertyMembersFormat": "table",
  22. "interfacePropertiesFormat": "table",
  23. "fileExtension": ".mdx",
  24. "entryFileName": "index"
  25. }