Files
ncd-fe/packages/pl-api/typedoc.config.mjs
nicole mikołajczyk 52fcb72c1d pl-api: fix regression
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
2026-03-25 22:10:38 +01:00

32 lines
848 B
JavaScript

/** @type {Partial<import('typedoc').TypeDocOptions>} */
const config = {
entryPoints: ['./lib/main.ts'],
plugin: ['typedoc-material-theme', 'typedoc-plugin-valibot'],
themeColor: '#d80482',
navigation: {
includeCategories: true,
},
categorizeByGroup: true,
sort: ['kind', 'alphabetical'],
kindSortOrder: ['Function', 'Class', 'Interface', 'TypeAlias', 'Variable', 'Enum'],
intentionallyNotExported: [
'CreateStatusOptionalParams',
'CreateStatusWithContent',
'CreateStatusWithMedia',
'EditStatusOptionalParams',
'GetTrends',
'LanguageParam',
'OnlyEventsParam',
'OnlyMediaParam',
'Params',
'PlApiClientConstructorOpts',
'WithMutedParam',
'WithRelationshipsParam',
],
groupReferencesByType: true,
suppressCommentWarningsInDeclarationFiles: true,
};
export default config;