docs: update typedocs config to support new module structure

This commit is contained in:
braks
2022-10-08 23:25:34 +02:00
committed by Braks
parent c1bcc02797
commit afb3fc7b49
8 changed files with 47 additions and 53 deletions
+5 -3
View File
@@ -1,14 +1,16 @@
{
"$schema": "https://typedoc.org/schema.json",
"readme": "none",
"plugin": "typedoc-plugin-markdown",
"entryPoints": ["../packages/vue-flow/src/index.ts"],
"plugin": ["typedoc-plugin-merge-modules","typedoc-plugin-markdown"],
"entryPoints": ["../packages/vue-flow/src/index.ts", "../packages/additional-components/src/index.ts"],
"allReflectionsHaveOwnDocument": true,
"categorizeByGroup": true,
"darkHighlightTheme": "vitesse-dark",
"lightHighlightTheme": "vitesse-light",
"hideBreadcrumbs": true,
"disableSources": true,
"cleanOutputDir": true,
"out": "src/typedocs",
"tsconfig": "../packages/vue-flow/tsconfig.docs.json",
"tsconfig": "./tsconfig.docs.json",
"entryDocument": "index.md"
}