forked from sendaifun/solana-agent-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypedoc.json
More file actions
30 lines (30 loc) · 818 Bytes
/
typedoc.json
File metadata and controls
30 lines (30 loc) · 818 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
30
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["packages/*"],
"packageOptions": {
"entryPoints": ["src/index.ts"]
},
"entryPointStrategy": "packages",
"out": "docs",
"plugin": ["typedoc-plugin-markdown"],
"theme": "markdown",
"readme": "none",
"exclude": ["**/node_modules/**", "**/test/**"],
"excludePrivate": true,
"excludeProtected": true,
"excludeExternals": true,
"includeVersion": true,
"hideGenerator": true,
"groupOrder": ["Classes", "Interfaces", "Functions", "Types", "Variables"],
"sort": ["source-order"],
"validation": {
"notExported": true,
"invalidLink": true,
"notDocumented": true
},
"navigationLinks": {
"GitHub": "https://github.com/sendaifun/solana-agent-kit"
},
"categorizeByGroup": true,
"cleanOutputDir": true
}