-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.json
48 lines (41 loc) · 1.2 KB
/
typedoc.json
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"$schema": "https://typedoc-plugin-markdown.org/schema.json",
"disableSources": true,
"out": "./docs",
"entryPoints": ["src/modules/*/index.ts"],
"sort": ["kind", "source-order"],
"plugin": [
"typedoc-plugin-zod",
"typedoc-plugin-markdown",
"typedoc-plugin-remark",
"./customTheme.mjs"
],
"cleanOutputDir": true,
"indexFormat": "list",
"parametersFormat": "table",
"interfacePropertiesFormat": "list",
"classPropertiesFormat": "list",
"enumMembersFormat": "table",
"typeDeclarationFormat": "list",
"propertyMembersFormat": "table",
"expandParameters": true,
"expandObjects": true,
"categoryOrder": ["Controller", "*"],
"hideBreadcrumbs": true,
"hidePageHeader": true,
"hidePageTitle": true,
"hideGroupHeadings": true,
"treatWarningsAsErrors": true,
// don't enable this, because it breaks references to some types on some pages,
// even though it gives us nice syntax highlighting.
"useCodeBlocks": false,
"tableColumnSettings": {
"hideInherited": true,
"hideDefaults": false
},
"outputFileStrategy": "members",
"flattenOutputFiles": false,
"theme": "customTheme",
"readme": "./src/docs_api_readme_prepend.md",
"mergeReadme": true
}