From b9a1c5c2a163369f64a21854f23df4fe6e416ea8 Mon Sep 17 00:00:00 2001 From: Marc Dumais Date: Mon, 13 Mar 2023 10:45:51 -0400 Subject: [PATCH] [API doc] exclude plugins folder from typedoc config I noticed some output of typedoc [1] that indicates it's analysing the content of at least some of our vscode builtins. This was unexpected. This PR adds an exclusion to the tool's config, so that this will stop. [1]: Warning: Unable to locate entry point: /home/lmcmcds/theia/plugins/EditorConfig.EditorConfig/extension/out/DocumentWatcher.js Warning: Unable to locate entry point: /home/lmcmcds/theia/plugins/EditorConfig.EditorConfig/extension/out/EditorConfigCompletionProvider.js [...] Fixes #12291 Signed-off-by: Marc Dumais --- configs/typedoc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configs/typedoc.json b/configs/typedoc.json index 90afbe072e99b..58af188917159 100644 --- a/configs/typedoc.json +++ b/configs/typedoc.json @@ -4,7 +4,8 @@ "../+(dev-packages|examples|typings|scripts)/**", "../packages/*/lib/**", "**/node_modules/**", - "**/*spec.ts" + "**/*spec.ts", + "../plugins/*" ], "excludeExternals": true, "external-modulemap": ".*\/packages\/([\\w\\-_]+)\/",