-
Notifications
You must be signed in to change notification settings - Fork 257
/
typedoc.json
45 lines (45 loc) · 1.16 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
{
"$schema": "https://typedoc.org/schema.json",
"out": "documentation/docs/api",
"media": "./assets",
"plugin": ["typedoc-plugin-markdown", "@moralisweb3/typedoc-readme-theme"],
"theme": "readme",
"entryDocument": "/modules.md",
"entryPoints": [
"packages/common/core",
"packages/common/aptosUtils",
"packages/common/evmUtils",
"packages/common/solUtils",
"packages/common/streamsUtils",
"packages/common/authUtils",
"packages/evmApi",
"packages/solApi",
"packages/aptosApi"
],
"entryPointStrategy": "packages",
"includeVersion": false,
"logLevel": "Verbose",
"intentionallyNotExported": [],
"excludeExternals": true,
"excludeInternal": true,
"excludePrivate": true,
"readme": "none",
"excludeNotDocumented": false,
"validation": {
"notExported": false,
"invalidLink": true,
"notDocumented": false
},
"disableSources": true,
"hideGenerator": true,
"searchInComments": true,
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": false,
"external": false,
"@alpha": false,
"@beta": false
},
"sort": ["static-first", "visibility", "alphabetical"]
}