-
Notifications
You must be signed in to change notification settings - Fork 4
/
typedoc.json
27 lines (27 loc) · 1004 Bytes
/
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
{
"$schema": "https://typedoc.org/schema.json",
"name": "Node.js SDK for digi.me",
"theme": "default",
"customCss": "typedoc-theme/style.css",
"entryPoints": ["src/sdk.ts", "src/errors.ts", "src/types.ts"],
"categorizeByGroup": false,
"out": "docs",
"plugin": ["typedoc-plugin-missing-exports"],
"excludeExternals": true,
"exclude": ["**/*+(index|.spec|.e2e).ts"],
"projectDocuments": [
"documents/initializing-the-sdk.md",
"documents/quick-start-guide.md",
"documents/create-user.md",
"documents/manage-accounts.md",
"documents/reading-data.md",
"documents/push-data.md",
"documents/handling-errors.md",
"documents/query.md",
"documents/storage.md",
"documents/sample-datasets.md",
"documents/portability-report.md",
"documents/example-applications.md"
],
"sort": ["kind", "instance-first", "alphabetical-ignoring-documents"]
}