forked from flare-foundation/attestation-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.config.json
More file actions
40 lines (39 loc) · 1.49 KB
/
typedoc.config.json
File metadata and controls
40 lines (39 loc) · 1.49 KB
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
{
"excludeExternals": true,
"entryPoints": ["./lib"],
"readme": "typedocReadme.md",
"categorizeByGroup": true,
"categoryOrder": ["Indexer", "Verifiers", "Config", "Install", "SmartContract", "AttesterClient", "ApiServer", "Test", "*"],
"mergeModulesMergeMode": "project",
"entryPointStrategy": "expand",
"out": "genDocs",
"pluginPages": {
"output": "",
"source": "docs",
"pages": [
{ "title": "Documentation Home", "source": "./docs/README.md" },
{ "title": "Using connected Testnets", "source": "./docs/testnets/README.md" },
{
"title": "Config",
"source": "./docs/config.md",
"children": [
{ "title": "Config Alerts", "source": "config-alerts.md" }
]
},
{
"title": "Installation",
"source": "./docs/installation.md",
"children": [
{ "title": "General installation", "source": "general-installation.md" },
{ "title": "Alerts installation", "source": "alerts-installation.md" },
{ "title": "Attester Client installation", "source": "attester-client-installation.md" },
{ "title": "Backend installation", "source": "backend-installation.md" },
{ "title": "Indexer installation", "source": "indexer-installation.md" },
{ "title": "Installation details ", "source": "installation-details.md" },
{ "title": "Services helpers", "source": "service-helpers.md" },
{ "title": "Services", "source": "services.md" }
]
}
]
}
}