-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtypedoc.json
64 lines (63 loc) · 1.63 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
{
"$schema": "https://typedoc.org/schema.json",
"name": "NuLink SDK",
"entryPoints": [
//"./src",
"./src/api/index.ts",
/* "./src/api/pre.ts",
"./src/api/wallet.ts", */
/* "./src/core/utils/exception.ts", */
"./src/core/hdwallet/api/account.ts",
"./src/core/pre/api/index.ts"
],
"allReflectionsHaveOwnDocument": true,
"sort": ["source-order"],
// "media": "media",
"categorizeByGroup": false,
"excludePrivate": true,
// "excludeProtected": true,
"excludeInternal": true,
"includeVersion": true,
"readme": "readme.md",
"showConfig": false,
"hideGenerator": true,
"intentionallyNotExported": [],
"externalSymbolLinkMappings": {},
"pretty": true,
"exclude": [
"./node_modules/**" //exclude some class from npm package e.g.:
// "types/jsx.d.ts",
// "**/*+(e2e|spec|index).ts",
// "**/*spec.tsx",
// "**/*.model.ts",
// "**/environment/*.ts",
// "**/components.d.ts",
// "**/components/common/*",
// "**/*+(e2e|spec|index).ts",
// "**/*spec.tsx",
// "**/*.model.ts",
// "**/environment/*.ts",
// "**/core.d.ts"
],
"plugin": [
"typedoc-plugin-markdown",
"typedoc-plugin-not-exported",
// "typedoc-plugin-external-module-name",
"typedoc-plugin-merge-modules",
],
"searchCategoryBoosts": {
"Component": 2,
"Model": 1.2
},
"searchGroupBoosts": {
"Classes": 1.5
},
"navigationLinks": {
"Docs": "https://docs.nulink.org/get-started/introduction",
"GitHub": "https://github.com/NuLink-network/nulink-sdk"
},
"sidebarLinks": {
"API": "https://docs.nulink.org/products/nulink_sdk"
},
"watch": true
}