-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtypedoc.json
More file actions
54 lines (54 loc) · 1.45 KB
/
Copy pathtypedoc.json
File metadata and controls
54 lines (54 loc) · 1.45 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
51
52
53
54
{
"entryPoints": ["src/index.ts"],
"entryPointStrategy": "expand",
"out": "docs/api-reference",
"includeVersion": true,
"excludePrivate": true,
"excludeProtected": false,
"excludeExternals": true,
"externalPattern": ["**/node_modules/**"],
"readme": "README.md",
"name": "ADK TypeScript API Reference",
"sort": ["static-first", "alphabetical"],
"categoryOrder": ["Core", "Agents", "Models", "Tools", "Sessions", "Memory", "*"],
"cleanOutputDir": true,
"validation": {
"invalidLink": true,
"notDocumented": true
},
"visibilityFilters": {
"protected": true,
"private": false,
"inherited": true,
"external": false
},
"plugin": ["typedoc-plugin-markdown"],
"theme": "default",
"treatWarningsAsErrors": false,
"searchInComments": true,
"disableSources": false,
"sourceLinkTemplate": "https://github.com/njraladdin/adk-typescript/blob/main/{path}#L{line}",
"navigationLinks": {
"GitHub": "https://github.com/njraladdin/adk-typescript",
"Examples": "https://github.com/njraladdin/adk-typescript/tree/main/examples"
},
"sidebarLinks": {
"Home": "https://github.com/njraladdin/adk-typescript#readme"
},
"categorizeByGroup": true,
"searchCategoryBoosts": {
"Core": 1.5,
"Agent": 1.3,
"Tool": 1.2
},
"jsDocCompatibility": true,
"excludeNotDocumented": false,
"groupOrder": [
"Classes",
"Interfaces",
"Enumerations",
"Functions",
"Variables",
"TypeAliases"
]
}