10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
|
/** @type {Partial<import('typedoc').TypeDocOptions>} */
|
||
|
|
||
|
const config = {
|
||
|
entryPoints: ['./lib/main.ts'],
|
||
|
plugin: ['typedoc-material-theme', 'typedoc-plugin-valibot'],
|
||
|
themeColor: '#d80482',
|
||
|
};
|
||
|
|
||
|
export default config;
|