Skip to content

Commit

Permalink
[API doc] exclude plugins folder from typedoc config
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
marcdumais-work committed Mar 13, 2023
1 parent be025fc commit 2b0581c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion configs/typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"../+(dev-packages|examples|typings|scripts)/**",
"../packages/*/lib/**",
"**/node_modules/**",
"**/*spec.ts"
"**/*spec.ts",
"../plugins/*"
],
"excludeExternals": true,
"external-modulemap": ".*\/packages\/([\\w\\-_]+)\/",
Expand Down

0 comments on commit 2b0581c

Please sign in to comment.