virmator
Version:
Handle common package configs, commands, and dependencies.
21 lines (18 loc) • 578 B
text/typescript
import {baseTypedocConfig} from '@virmator/docs/configs/typedoc.config.base';
import {join, resolve} from 'path';
import {type TypeDocOptions} from 'typedoc';
const repoRoot = resolve(import.meta.dirname, '..');
const indexTsFile = join(repoRoot, 'src', 'index.ts');
export const typeDocConfig: Partial<TypeDocOptions> = {
...baseTypedocConfig,
out: join(repoRoot, 'dist-docs'),
entryPoints: [
indexTsFile,
],
intentionallyNotExported: [],
defaultCategory: 'MISSING CATEGORY',
categoryOrder: [
'Main',
'Internal',
],
};