-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathtypedoc.js
More file actions
19 lines (19 loc) · 618 Bytes
/
typedoc.js
File metadata and controls
19 lines (19 loc) · 618 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
* @type {Partial<import('typedoc').TypeDocOptions> & Partial<import('typedoc-plugin-markdown').MarkdownTheme>}
*/
const opts = {
entryPointStrategy: 'expand',
out: './website/src/pages/docs',
readme: 'none',
plugin: ['typedoc-plugin-markdown'],
excludeExternals: true,
excludePrivate: true,
categorizeByGroup: false, // removes redundant category names in matching modules
githubPages: false,
exclude: ['**/index.ts', '**/utils.ts', '**/parser.ts', '**/tests/**/*'],
entryDocument: 'index.md',
hideInPageTOC: true,
publicPath: '/docs/',
hideBreadcrumbs: true,
};
module.exports = opts;