-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtypedoc.json
More file actions
37 lines (37 loc) · 824 Bytes
/
typedoc.json
File metadata and controls
37 lines (37 loc) · 824 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
32
33
34
35
36
37
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./src/index.ts"],
"out": "docs/content",
"plugin": [
"typedoc-plugin-markdown",
"./scripts/mintlify-post-processing/typedoc-plugin/typedoc-mintlify-plugin.js"
],
"fileExtension": ".mdx",
"excludePrivate": true,
"excludeProtected": true,
"excludeInternal": true,
"excludeExternals": true,
"readme": "none",
"gitRevision": "main",
"sort": ["source-order"],
"kindSortOrder": [
"Project",
"Module",
"Namespace",
"Enum",
"Class",
"Interface",
"TypeAlias",
"Constructor",
"Property",
"Method",
"Function",
"Accessor",
"Variable"
],
"entryFileName": "README.mdx",
"maxTypeConversionDepth": 2,
"hideBreadcrumbs": true,
"disableSources": true,
"hidePageTitle": true
}