-
Notifications
You must be signed in to change notification settings - Fork 25
/
typedoc.json
50 lines (50 loc) · 1.19 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
{
"entryPoints": [
"packages/@dcl/sdk/src",
"packages/@dcl/js-runtime/apis.d.ts"
],
"tsconfig": "packages/@dcl/sdk/tsconfig.json",
"includeVersion": true,
"cleanOutputDir": true,
"json": "api-docs/docs.json",
"name": "SDK Documentation",
"categorizeByGroup": true,
"defaultCategory" : " ",
"searchCategoryBoosts": {
"Component": 1,
},
"hideGenerator": true,
"excludeExternals": false,
"excludeInternal": true,
// TODO: We need to document all the protocol ~system/ API
"excludeNotDocumented": false,
"entryPointStrategy": "expand",
"out": "api-docs",
"exclude": [
"packages/@dcl/sdk/src/internal/**/*.ts",
"packages/@dcl/sdk/src/testing/**/*.ts",
"packages/@dcl/sdk/src/message-bus.ts",
"packages/@dcl/sdk/src/observables.ts",
"packages/@dcl/sdk/src/index.ts"
],
"treatWarningsAsErrors": false,
"plugin": [],
"kindSortOrder": [
"Module",
"Function",
"Variable",
"Interface",
"TypeAlias",
"Namespace",
"Enum"
],
"visibilityFilters": {
"protected": true,
"private": true,
"inherited": true,
"external": true
},
"sidebarLinks": {
"Documentation": "http://docs.decentraland.org"
}
}