forked from ceramicnetwork/js-ceramic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.json
66 lines (66 loc) · 1.7 KB
/
typedoc.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"mode": "modules",
"out": "./docs/reference/typescript",
"exclude": [
"**/node_modules/**",
"**/*.test.ts",
"**/__mocks__/*.ts"
],
"name": "Ceramic Typescript Implementation",
"excludePrivate": true,
"excludeExternals": true,
"disableOutputCheck": true,
"ignoreCompilerErrors": false,
"listInvalidSymbolLinks": true,
"hideGenerator": true,
"media": "./docs-src/media",
"theme": "./node_modules/typedoc-plugin-pages/dist/theme/v2",
"plugin": "typedoc-plugin-pages,typedoc-plugin-lerna-packages",
"readme": "./README.md",
"pages": {
"reflectionNavigationTitle": "Package APIs",
"groups": [
{
"title": "Ceramic Typescript Implementation",
"pages": [
{
"title": "Architecture",
"source": "./docs-src/architecture/overview.md",
"children": [
{
"title": "Pinning",
"source": "./docs-src/architecture/pinning.md"
},
{
"title": "State Management",
"source": "./docs-src/architecture/state-management.md"
}
]
}
]
},
{
"title": "Guides",
"pages": [
{
"title": "Create a Stream",
"source": "./docs-src/guides/create-doctype.md"
},
{
"title": "Add support for new blockchain",
"source": "./docs-src/guides/add-new-blockchain.md"
}
]
},
{
"title": "ADRs",
"pages": [
{
"title": "1. State Refactor",
"source": "./docs-src/adr/1-state-refactor.adr.md"
}
]
}
]
}
}