-
Notifications
You must be signed in to change notification settings - Fork 1
/
typedoc.json
41 lines (41 loc) · 910 Bytes
/
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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./src/core/index.ts", "./src/react/index.ts"],
"out": "typedoc/generated",
"readme": "typedoc/landing-page.md",
"treatWarningsAsErrors": true,
"includeVersion": true,
"excludeInternal": true,
"validation": true,
"visibilityFilters": {
"external": true
},
"externalSymbolLinkMappings": {
"ably": {
"*": "https://sdk.ably.com/builds/ably/ably-js/main/typedoc/",
}
},
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@ably": ["node_modules/ably/ably.d.ts"],
"@ably/chat": ["./src/core"],
"@ably/chat/react": ["./src/react"]
}
},
"requiredToBeDocumented": [
"Accessor",
"Class",
"Constructor",
"Enum",
"EnumMember",
"Function",
"Interface",
"Method",
"Parameter",
"Property",
"TypeAlias",
"Variable",
"Namespace"
]
}