From 954140776e072ccd68c8d74ebbcdb860f8696579 Mon Sep 17 00:00:00 2001 From: Thuc Pham <51660321+thucpn@users.noreply.github.com> Date: Fri, 14 Feb 2025 17:06:23 +0700 Subject: [PATCH] fix: missing document entrypoints (#1663) Co-authored-by: Marcus Schiesser <mail@marcusschiesser.de> --- apps/next/typedoc.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/next/typedoc.json b/apps/next/typedoc.json index eeaacbbc9..a545e44cd 100644 --- a/apps/next/typedoc.json +++ b/apps/next/typedoc.json @@ -1,6 +1,13 @@ { "plugin": ["typedoc-plugin-markdown", "typedoc-plugin-merge-modules"], - "entryPoints": ["../../packages/llamaindex/src/index.ts"], + "entryPoints": ["../../packages/**/src/index.ts"], + "exclude": [ + "../../packages/autotool/**/src/index.ts", + "**/node_modules/**", + "**/dist/**", + "**/test/**", + "**/tests/**" + ], "tsconfig": "../../tsconfig.json", "readme": "none", "sourceLinkTemplate": "https://github.com/run-llama/LlamaIndexTS/blob/{gitRevision}/{path}#L{line}", -- GitLab