-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathtypedoc.json
More file actions
74 lines (74 loc) · 1.92 KB
/
typedoc.json
File metadata and controls
74 lines (74 loc) · 1.92 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"$schema": "https://typedoc.org/schema.json",
"name": "AgentScript Monorepo API",
"entryPointStrategy": "expand",
"entryPoints": [
"packages/typescript-sdk/src/index.ts",
"dialects/agentscript/src/index.ts"
],
"tsconfig": "packages/typescript-sdk/tsconfig.json",
"out": "apps/docs/docs/api",
"plugin": ["typedoc-plugin-markdown"],
"readme": "none",
"hideGenerator": true,
"excludePrivate": true,
"excludeProtected": false,
"excludeExternals": true,
"excludeNotDocumented": false,
"exclude": ["**/node_modules/**", "**/dist/**", "**/*.test.ts", "**/*.spec.ts", "apps/**"],
"navigation": {
"includeCategories": true,
"includeGroups": true,
"includeFolders": true
},
"categorizeByGroup": true,
"groupOrder": [
"Classes",
"Interfaces",
"Type Aliases",
"Functions",
"Variables",
"*"
],
"sort": ["source-order"],
"kindSortOrder": [
"Project",
"Module",
"Namespace",
"Enum",
"EnumMember",
"Class",
"Interface",
"TypeAlias",
"Constructor",
"Property",
"Variable",
"Function",
"Accessor",
"Method",
"Parameter",
"TypeParameter",
"TypeLiteral",
"CallSignature",
"ConstructorSignature",
"IndexSignature",
"GetSignature",
"SetSignature"
],
"externalSymbolLinkMappings": {
"typescript": {
"Promise": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
"Map": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map",
"Set": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set",
"Array": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array"
}
},
"validation": {
"notExported": false,
"invalidLink": true,
"notDocumented": false
},
"includeVersion": true,
"searchInComments": true,
"commentStyle": "jsdoc"
}