-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.config.json
90 lines (90 loc) · 2.7 KB
/
typedoc.config.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"src/docs/getting-started.ts",
"src/backend/middleware/index.ts",
"src/backend/routes/health.ts",
"src/backend/routes/metrics.ts",
"src/backend/routes/files.ts",
"src/backend/routes/users.ts",
"src/backend/routes/auth.ts",
"src/backend/config/database.ts",
"src/backend/config/environment.ts",
"src/backend/utils/banner.ts",
"src/frontend/components/app-shell.ts",
"src/frontend/components/nav/MainNav.ts",
"src/frontend/components/data-table/data-table.ts",
"src/frontend/components/doc-viewer/DocViewer.ts",
"src/frontend/components/home/HomePage.ts",
"src/frontend/shared/base/BaseComponent.ts",
"src/frontend/components/button/base-button.ts",
"src/frontend/components/button/button.ts",
"src/frontend/shared/components/app-card.ts",
"src/frontend/shared/components/app-input.ts",
"src/frontend/components/form/api-form.ts",
"src/frontend/components/upload/file-upload.ts",
"src/frontend/core/error/ErrorBoundary.ts",
"src/system/components/MetricCard.ts",
"src/system/components/Sparkline.ts"
],
"out": "docs",
"name": "FARM Documentation",
"includeVersion": true,
"excludePrivate": true,
"excludeExternals": false,
"excludeInternal": false,
"theme": "default",
"readme": "README.md",
"tsconfig": "./tsconfig.json",
"logLevel": "Verbose",
"categorizeByGroup": false,
"sort": ["source-order"],
"treatWarningsAsErrors": false,
"skipErrorChecking": true,
"intentionallyNotExported": ["LitElement"],
"externalPattern": ["**/node_modules/**"],
"excludeNotDocumented": false,
"hideGenerator": true,
"disableSources": true,
"searchInComments": true,
"cleanOutputDir": true,
"validation": {
"notExported": false,
"invalidLink": false,
"notDocumented": false
},
"visibilityFilters": {
"protected": true,
"private": false,
"inherited": true,
"external": false,
"@alpha": true,
"@beta": true,
"@experimental": true,
"@internal": false
},
"blockTags": [
"@csspart",
"@cssprop",
"@slot",
"@fires",
"@category",
"@remarks",
"@example",
"@returns",
"@param",
"@typeParam",
"@typedef",
"@type",
"@default",
"@group",
"@throws",
"@route",
"@method",
"@body",
"@response",
"@security",
"@module",
"@packageDocumentation"
]
}