Skip to content

Commit 55aaa36

Browse files
committed
Fix #2878
1 parent 27597d3 commit 55aaa36

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ title: Changelog
4040
control over export conversion order, #2856
4141
- Introduced `packagesRequiringDocumentation` option for `validation.notDocumented`, TypeDoc will expect comments to be present for symbols in the specified packages.
4242
- TypeDoc now exports a `typedoc/browser` entrypoint for parsing and using serialized JSON files, #2528.
43+
- Type `packageOptions` as `Partial<TypeDocOptions>`, #2878.
4344

4445
### Bug Fixes
4546

src/lib/utils/options/declaration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export interface TypeDocOptionMap {
109109
plugin: NormalizedPathOrModule[];
110110
lang: string;
111111
locales: ManuallyValidatedOption<Record<string, Record<string, string>>>;
112-
packageOptions: ManuallyValidatedOption<TypeDocOptions>;
112+
packageOptions: ManuallyValidatedOption<Partial<TypeDocOptions>>;
113113

114114
// Input
115115
entryPoints: GlobString[];

0 commit comments

Comments
 (0)