-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.json
32 lines (32 loc) · 938 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
{
"$schema": "https://typedoc.org/schema.json",
"includes": ".",
"entryPoints": [
"src/util/index.ts",
"src/realtime-containers/index.ts",
"src/realtime-containers/settings/index.ts",
"src/realtime-containers/events/index.ts",
"src/weather-station/index.ts",
"src/weather-station/settings/index.ts",
"src/weather-station/events/index.ts",
"src/errors/index.ts",
"src/index.ts",
"src/structures/index.ts",
"src/structures/subtypes/index.ts",
"src/units/index.ts"
],
"out": "docs",
"excludeProtected": true,
"excludePrivate": true,
"excludeExternals": false,
"pretty":true,
"entryPointStrategy": "expand",
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"external": true
},
"showConfig": false,
"customCss": "typedoc.css"
}