-
Notifications
You must be signed in to change notification settings - Fork 46
/
typedoc.json
41 lines (40 loc) · 1.08 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
{
"plugin": [
"@typhonjs-typedoc/typedoc-theme-dmt",
"typedoc-plugin-coverage"
],
"dmtLinksService": {
"Discord": "<URL>",
"GitHub": "<URL>",
"BitBucket": "<URL>",
"GitLab": "<URL>",
"NPM": "<URL>"
},
"dmtSettings": {
"animation": true // When true theme animation is enabled.
},
"theme": "default-modern",
"$schema": "https://typedoc.org/schema.json",
"name": "dojo.js docs",
"entryPoints": [
"./packages/sdk/src/index.ts",
"./packages/core/src/index.ts",
"./packages/react/src/index.ts",
"./packages/create-burner/src/index.ts",
"./packages/utils/src/index.ts",
"./packages/torii-client/src/index.ts"
],
"sort": ["source-order"],
"categorizeByGroup": true,
"searchCategoryBoosts": {
"Component": 2,
"Model": 1.2
},
"searchGroupBoosts": {
"Classes": 1.5
},
"navigationLinks": {
"Docs": "https://dojoengine.github.io/dojo.js",
"GitHub": "https://github.com/dojoengine/dojo.js"
}
}