-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
31 lines (31 loc) · 892 Bytes
/
typedoc.json
File metadata and controls
31 lines (31 loc) · 892 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
31
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"src/index.ts",
"src/client-entry.ts",
"src/runtime/index.ts",
"src/types/index.ts",
"src/provider/index.ts",
"src/nestjs/index.ts",
"src/testing/index.ts"
],
"entryPointStrategy": "expand",
"out": "docs",
"name": "@macpaw/ai-sdk",
"readme": "README.md",
"tsconfig": "tsconfig.json",
"excludePrivate": true,
"excludeProtected": true,
"excludeInternal": true,
"excludeExternals": true,
"externalPattern": ["node_modules/**"],
"includeVersion": true,
"categorizeByGroup": true,
"sort": ["source-order"],
"kindSortOrder": ["Function", "Class", "Interface", "TypeAlias", "Variable", "Enum"],
"navigationLinks": {
"GitHub": "https://github.com/macpaw/ai-sdk-typescript",
"npm": "https://www.npmjs.com/package/@macpaw/ai-sdk"
},
"skipErrorChecking": true
}