-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.json
43 lines (43 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
{
"$schema": "https://typedoc.org/schema.json",
"name": "Houston Common Library",
"entryPointStrategy": "packages",
"entryPoints": ["houston-common-lib", "houston-common-ui"],
"out": "docs",
"includeVersion": false,
"readme": "README.md",
"plugin": [
"typedoc-umlclass",
"typedoc-plugin-mdn-links",
"typedoc-plugin-vue",
"typedoc-plugin-missing-exports"
],
"umlClassDiagram": {
"type": "detailed",
"location": "local",
"format": "png",
"legend": "only-included",
"style": {
"backgroundColor": "white"
}
},
"compilerOptions": {
"skipLibCheck": false,
"strictNullChecks": false,
"allowJs": true,
"checkJs": false,
"noUncheckedIndexedAccess": false,
},
"sourceLinkExternal": true,
"hideParameterTypesInTitle": false,
"sidebarLinks": {
"Official Cockpit API Documentation": "https://cockpit-project.org/guide/latest/api-base1.html"
},
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"external": true
},
"placeInternalsInOwningModule": true,
}