Skip to content

Commit

Permalink
Moved configuration from build.mts to typedoc.json
Browse files Browse the repository at this point in the history
  • Loading branch information
cowwoc committed Nov 29, 2023
1 parent bedd98b commit 6455c81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 1 addition & 3 deletions build.mts
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,7 @@ class Build
log.info("generateDocumentation()");
const targetDirectory = "target/apidocs/";

const app = await TypeDoc.Application.bootstrapWithPlugins({
excludeExternals: true
}, [
const app = await TypeDoc.Application.bootstrapWithPlugins({}, [
new TypeDoc.TypeDocReader(),
new TypeDoc.TSConfigReader()
]);
Expand Down
3 changes: 2 additions & 1 deletion typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
"excludePrivate": true,
"includeVersion": true,
"treatWarningsAsErrors": true,
"treatValidationWarningsAsErrors": true
"treatValidationWarningsAsErrors": true,
"excludeExternals": true
}

0 comments on commit 6455c81

Please sign in to comment.