docs: generate markdown

This commit is contained in:
Rajeh Taher
2025-03-18 00:54:07 +02:00
parent 63cc75d78e
commit d202241a6f
3 changed files with 17 additions and 6 deletions

View File

@@ -1,8 +1,13 @@
{
"entryPoints": ["./src/index.ts"],
"excludePrivate": true,
"excludeProtected": true,
"excludeExternals": true,
"includeVersion": false,
"out": "docs"
"entryPoints": ["src/index.ts"],
"out": "docs/api",
"plugin": ["typedoc-plugin-markdown"],
"excludePrivate": true,
"excludeProtected": true,
"excludeExternals": true,
"includeVersion": false,
"hideBreadcrumbs": true,
"hidePageHeader": true,
"entryFileName": "index.md",
"readme": "none"
}