diff --git a/.changeset/config.json b/.changeset/config.json index 5eaa8f539..8bdb32ed6 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -10,5 +10,13 @@ "access": "public", "baseBranch": "main", "updateInternalDependencies": "minor", - "ignore": ["@devtools/*"] + "ignore": [ + "@devtools/*", + "docusaurus-plugin-typedoc", + "typedoc-github-wiki-theme", + "typedoc-gitlab-wiki-theme", + "typedoc-vitepress-theme", + "typedoc-plugin-remark", + "typedoc-plugin-frontmatter" + ] } diff --git a/packages/docusaurus-plugin-typedoc/src/types/options.ts b/packages/docusaurus-plugin-typedoc/src/types/options.ts index 7d0ab483c..de0e9e00d 100644 --- a/packages/docusaurus-plugin-typedoc/src/types/options.ts +++ b/packages/docusaurus-plugin-typedoc/src/types/options.ts @@ -16,9 +16,6 @@ export interface PluginOptions { sidebar: Sidebar; } -/** - * - */ export interface Sidebar { autoConfiguration: boolean; pretty: boolean; diff --git a/packages/typedoc-github-wiki-theme/src/types/options.ts b/packages/typedoc-github-wiki-theme/src/types/options.ts index f95066c80..e1ecb6793 100644 --- a/packages/typedoc-github-wiki-theme/src/types/options.ts +++ b/packages/typedoc-github-wiki-theme/src/types/options.ts @@ -11,9 +11,6 @@ export interface PluginOptions { sidebar: Sidebar; } -/** - * - */ export interface Sidebar { autoConfiguration: boolean; heading: string; diff --git a/packages/typedoc-gitlab-wiki-theme/src/types/options.ts b/packages/typedoc-gitlab-wiki-theme/src/types/options.ts index 34f77cea8..e82485d1e 100644 --- a/packages/typedoc-gitlab-wiki-theme/src/types/options.ts +++ b/packages/typedoc-gitlab-wiki-theme/src/types/options.ts @@ -11,9 +11,6 @@ export interface PluginOptions { sidebar: Sidebar; } -/** - * - */ export interface Sidebar { autoConfiguration: boolean; heading: string; diff --git a/packages/typedoc-plugin-frontmatter/test/typedoc-base.json b/packages/typedoc-plugin-frontmatter/test/typedoc-base.json index c0bf6e4f1..0176e27c3 100644 --- a/packages/typedoc-plugin-frontmatter/test/typedoc-base.json +++ b/packages/typedoc-plugin-frontmatter/test/typedoc-base.json @@ -5,5 +5,6 @@ "readme": "./some-readme.md", "plugin": ["typedoc-plugin-markdown", "typedoc-plugin-frontmatter"], "hidePageHeader": true, - "hideBreadcrumbs": true + "hideBreadcrumbs": true, + "disableSources": true } diff --git a/packages/typedoc-plugin-frontmatter/test/typedoc-options-2.cjs b/packages/typedoc-plugin-frontmatter/test/typedoc-options-2.cjs index 2a5e88789..84691ad4c 100644 --- a/packages/typedoc-plugin-frontmatter/test/typedoc-options-2.cjs +++ b/packages/typedoc-plugin-frontmatter/test/typedoc-options-2.cjs @@ -26,4 +26,5 @@ module.exports = { hide: true, }, frontmatterCommentTags: ['tagOne', 'tagTwo', 'tagThree'], + disableSources: true, }; diff --git a/packages/typedoc-plugin-frontmatter/test/typedoc-options.cjs b/packages/typedoc-plugin-frontmatter/test/typedoc-options.cjs index eb75979eb..a022616fe 100644 --- a/packages/typedoc-plugin-frontmatter/test/typedoc-options.cjs +++ b/packages/typedoc-plugin-frontmatter/test/typedoc-options.cjs @@ -19,4 +19,5 @@ module.exports = { hide: true, }, frontmatterCommentTags: ['tagOne', 'tagTwo', 'tagThree'], + disableSources: true, }; diff --git a/packages/typedoc-vitepress-theme/src/types/options.ts b/packages/typedoc-vitepress-theme/src/types/options.ts index b2e906001..b2838d321 100644 --- a/packages/typedoc-vitepress-theme/src/types/options.ts +++ b/packages/typedoc-vitepress-theme/src/types/options.ts @@ -16,9 +16,6 @@ export interface PluginOptions { sidebar: Sidebar; } -/** - * - */ export interface Sidebar { autoConfiguration: boolean; format: string;