-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtypedoc.json
More file actions
29 lines (29 loc) · 907 Bytes
/
typedoc.json
File metadata and controls
29 lines (29 loc) · 907 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
29
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["src/index.js"],
"jsDocCompatibility": true,
"plugin": ["typedoc-plugin-markdown", "typedoc-vitepress-theme", "typedoc-plugin-llms-txt"],
"out": "./docs/api",
"docsRoot": "./docs",
"excludeExternals": true,
"excludeInternal": true,
"excludePrivate": true,
"excludeProtected": true,
"excludePrivateClassFields": true,
"categorizeByGroup": false,
"navigation": {
"includeFolders": true,
"compactFolders": false,
"includeCategories": true,
"includeGroups": true
},
"indexFormat": "table",
"parametersFormat": "table",
"propertiesFormat": "table",
"enumMembersFormat": "table",
"interfacePropertiesFormat": "table",
"typeDeclarationFormat": "table",
"expandObjects": true,
"expandParameters": true,
"useCodeBlocks": true
}