-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathtypedoc.json
More file actions
35 lines (35 loc) · 961 Bytes
/
typedoc.json
File metadata and controls
35 lines (35 loc) · 961 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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"src/components/semiotic.ts",
"src/components/semiotic-xy.ts",
"src/components/semiotic-ordinal.ts",
"src/components/semiotic-network.ts",
"src/components/semiotic-geo.ts",
"src/components/semiotic-realtime.ts",
"src/components/semiotic-server.ts",
"src/components/semiotic-ai.ts"
],
"entryPointStrategy": "expand",
"out": "docs/build/api",
"json": "docs/public/api/api.json",
"tsconfig": "tsconfig.json",
"excludePrivate": true,
"excludeProtected": true,
"excludeInternal": true,
"skipErrorChecking": true,
"readme": "none",
"name": "Semiotic API Reference",
"navigationLinks": {
"Docs": "/",
"GitHub": "https://github.com/nteract/semiotic"
},
"categorizeByGroup": true,
"sort": ["source-order"],
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"@deprecated": true
}
}