From 042020d074ccaf5ed7f7c9443ca9ee26549f6636 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Mon, 8 Jan 2024 18:17:44 -0500 Subject: [PATCH] Add multiple entrypoints to the api docs (#41) --- docs/typedoc.config.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/typedoc.config.json b/docs/typedoc.config.json index 1576938..61171ca 100644 --- a/docs/typedoc.config.json +++ b/docs/typedoc.config.json @@ -4,7 +4,11 @@ "compilerOptions": { "noEmitOnError": false }, - "entryPoints": ["../reactiveweb/src/**"], + "entryPoints": [ + "../reactiveweb/src/*", + "../reactiveweb/src/resource/service.ts", + "../reactiveweb/src/resource/modifier/index.ts" + ], "navigationLinks": { "GitHub": "https://github.com/universal-ember/reactiveweb" },