-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtypedoc.json
More file actions
50 lines (50 loc) · 1.07 KB
/
typedoc.json
File metadata and controls
50 lines (50 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
43
44
45
46
47
48
49
50
{
"$schema": "https://typedoc.org/schema.json",
"entryPointStrategy": "expand",
"entryPoints": [
"./src/index.ts"
],
"plugin": [
"typedoc-plugin-markdown",
"typedoc-vitepress-theme"
],
"out": "docs/api",
"readme": "none",
"includeVersion": true,
"excludePrivate": true,
"excludeProtected": true,
"excludeInternal": true,
"hideBreadcrumbs": true,
"hidePageTitle": false,
"name": "aa-js",
"router": "kind",
"navigation": {
"includeCategories": true,
"includeGroups": true,
"includeFolders": true
},
"categoryOrder": [
"index",
"modules",
"classes",
"interfaces",
"functions",
"variables",
"types",
"enums"
],
"defaultCategory": "Other",
"indexFormat": "list",
"parametersFormat": "table",
"interfacePropertiesFormat": "table",
"classPropertiesFormat": "table",
"typeAliasPropertiesFormat": "list",
"enumMembersFormat": "table",
"propertyMembersFormat": "table",
"typeDeclarationFormat": "table",
"useCustomAnchors": true,
"headings": {
"readme": true,
"document": false
}
}