diff --git a/CHANGELOG.md b/CHANGELOG.md index ecadf46ce..c751aea6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - Removed `--logger` option, to disable all logging, set the `logLevel` option to `none`. - Dropped support for legacy `[[link]]`s, removed deprecated `Reflection.findReflectionByName`. - Internal links are now only resolved with declaration references. +- Added `@overload` to default ignored tags. ### API Breaking Changes diff --git a/src/lib/utils/options/sources/typedoc.ts b/src/lib/utils/options/sources/typedoc.ts index 5d8abc0c8..3bdf3482d 100644 --- a/src/lib/utils/options/sources/typedoc.ts +++ b/src/lib/utils/options/sources/typedoc.ts @@ -309,6 +309,7 @@ export function addTypeDocOptions(options: Pick) { "@virtual", "@privateRemarks", "@satisfies", + "@overload", ], validate(value) { if (!Validation.validate([Array, Validation.isTagString], value)) {