-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypedoc.json
More file actions
39 lines (39 loc) · 908 Bytes
/
typedoc.json
File metadata and controls
39 lines (39 loc) · 908 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
38
39
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"./packages/sdk/src/index.ts",
"./packages/sdk-react/src/index.ts"
],
"out": "./docs/api",
"json": "./docs/api/api.json",
"name": "Villa SDK",
"readme": "./packages/sdk/README.md",
"plugin": ["typedoc-plugin-markdown"],
"outputFileStrategy": "modules",
"excludePrivate": true,
"excludeProtected": true,
"excludeInternal": true,
"excludeExternals": true,
"skipErrorChecking": true,
"hideGenerator": true,
"disableSources": false,
"githubPages": false,
"includeVersion": true,
"categorizeByGroup": true,
"categoryOrder": [
"Simple API",
"Advanced API",
"React Hooks",
"React Components",
"Types",
"Utilities",
"*"
],
"sort": ["source-order"],
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"external": false
}
}