-
Notifications
You must be signed in to change notification settings - Fork 21
/
typedoc.json
32 lines (30 loc) · 877 Bytes
/
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
{
"$schema": "https://typedoc-plugin-markdown.org/schema.json",
"categoryOrder": ["Constructor", "API Access" , "Utilities"],
"cleanOutputDir": false,
"disableSources": true,
"entryPoints": ["src/*.ts"],
"enumMembersFormat": "table",
"exclude": [ "src/index.ts", "src/settings.ts"],
"excludeExternals": true,
"excludeInternal": true,
"excludeNotDocumented": false,
"excludePrivate": true,
"excludeProtected": true,
"expandObjects": true,
"gitRevision": "main",
"hideGenerator": true,
"indexFormat": "table",
"mergeReadme": true,
"out": "docs",
"outputFileStrategy": "modules",
"parametersFormat": "table",
"plugin": ["typedoc-plugin-markdown"],
"propertiesFormat": "table",
"readme": "docs/Overview.md",
"textContentMappings": {
"breadcrumbs.home": "Home"
},
"typeDeclarationFormat": "table",
"useCodeBlocks": true
}