12 lines
275 B
JavaScript
12 lines
275 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,
|
|
},
|
|
};
|
|
|
|
export default config;
|