-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypedoc.config.mjs
More file actions
28 lines (27 loc) · 757 Bytes
/
typedoc.config.mjs
File metadata and controls
28 lines (27 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// @ts-check
export default {
/**
* typedoc options
* ref: https://typedoc.org/documents/Options.html
*/
entryPoints: ['./src/index.ts', './src/node.ts', './src/hono.ts', './src/h3.ts'],
out: 'docs',
plugin: ['typedoc-plugin-markdown'],
readme: 'none',
groupOrder: ['Variables', 'Functions', 'Class'],
/**
* typedoc-plugin-markdown options
* ref: https://typedoc-plugin-markdown.org/docs/options
*/
entryFileName: 'index',
hidePageTitle: false,
useCodeBlocks: true,
disableSources: true,
indexFormat: 'table',
parametersFormat: 'table',
interfacePropertiesFormat: 'table',
classPropertiesFormat: 'table',
propertyMembersFormat: 'table',
typeAliasPropertiesFormat: 'table',
enumMembersFormat: 'table'
}