Files
ncd-fe/packages/pl-api/typedoc.config.mjs
nicole mikołajczyk c32d3c5d2a pl-api: update typdeoc config
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
2026-03-19 16:33:28 +01:00

39 lines
877 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;