-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathtypedoc.json
More file actions
39 lines (39 loc) · 1.14 KB
/
typedoc.json
File metadata and controls
39 lines (39 loc) · 1.14 KB
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
{
"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"
}
}