From 1487f676897bc0b7b9fb642c3265a1d73c5b9b4b Mon Sep 17 00:00:00 2001 From: Gerrit Birkeland Date: Sun, 19 Mar 2023 14:27:49 -0600 Subject: [PATCH] Add overload to ignored tags --- CHANGELOG.md | 1 + src/lib/utils/options/sources/typedoc.ts | 1 + 2 files changed, 2 insertions(+) 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)) {