forked from tkhq/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
30 lines (30 loc) · 782 Bytes
/
typedoc.json
File metadata and controls
30 lines (30 loc) · 782 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
{
"entryPoints": ["src/index.ts"],
"name": "encoding",
"exclude": [
"src/turnkey-helpers.ts",
"**/__generated__/**",
"**/__inputs__/**",
"**/__types__/**",
"**/node_modules/**",
"src/__generated__/sdk_api_types.ts",
"src/__generated__/sdk-client-base.ts",
"src/__inputs__/public_api.types.ts",
"src/__inputs__/public_api.swagger.json",
"src/__types__/base.ts"
],
"excludeInternal": true,
"includeVersion": true,
"alwaysCreateEntryPointModule": true,
"gitRevision": "main",
"router": "structure-dir",
"projectDocuments": ["documents/*.md", "CHANGELOG.md"],
"outputs": [
{
// requires typedoc-plugin-markdown
"name": "json",
"path": "./generated-docs/sdks",
"fileExtension": "json"
}
]
}