-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtypedoc.json
More file actions
42 lines (36 loc) · 1.07 KB
/
typedoc.json
File metadata and controls
42 lines (36 loc) · 1.07 KB
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
{
"entryPoints": ["./src/index.ts"],
"plugin": ["typedoc-plugin-markdown", "typedoc-vitepress-theme"],
"out": "./docs/api",
"docsRoot": "./docs",
"readme": "none",
"hidePageHeader": false,
"hideBreadcrumbs": false,
"hidePageTitle": false,
"useCodeBlocks": true,
"expandObjects": true,
"expandParameters": true,
"strikeDeprecatedPageTitles": true,
"indexFormat": "list",
"parametersFormat": "list",
"interfacePropertiesFormat": "list",
"classPropertiesFormat": "table",
"typeAliasPropertiesFormat": "list",
"enumMembersFormat": "list",
"propertyMembersFormat": "list",
"typeDeclarationFormat": "list",
"pageTitleTemplates": {
"index": "{projectName} (v{version})",
"member": "{kind}: `{rawName}`",
"module": "{name}"
},
"tableColumnSettings": {
"hideDefaults": false,
"hideInherited": false,
"hideModifiers": false,
"hideOverrides": false,
"hideSources": false,
"hideValues": false,
"leftAlignHeaders": true
}
}