-
-
Notifications
You must be signed in to change notification settings - Fork 735
/
Copy pathtypedoc.config.jsonc
133 lines (127 loc) · 5.36 KB
/
typedoc.config.jsonc
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"$schema": "https://typedoc.org/schema.json",
"logLevel": "Verbose",
"entryPointStrategy": "merge",
"entryPoints": [],
"alwaysCreateEntryPointModule": true,
"out": "../docs-site",
"name": "TypeDoc",
"plugin": ["./typedoc-plugin-redirect.js", "./site-plugin.js"],
"readme": "index.md",
"projectDocuments": [
"overview.md",
"options.md",
"doc-comments/index.md",
"external-documents.md",
"themes.md",
"plugins.md",
"declaration-references.md",
"tags.md",
"generated/CHANGELOG.md",
"development/index.md",
],
"highlightLanguages": [
"bash",
"console",
"css",
"html",
"javascript",
"json",
"jsonc",
"json5",
"yaml",
"tsx",
"typescript",
"markdown",
],
"customCss": "custom.css",
"favicon": "favicon.ico",
"searchInComments": true,
"searchInDocuments": true,
"navigation": {
"includeCategories": true,
"includeGroups": false,
"excludeReferences": true,
},
"navigationLinks": {
"Example": "https://typedoc.org/example/index.html",
"API": "https://typedoc.org/api/index.html",
"GitHub": "https://github.com/TypeStrong/typedoc",
},
// The site doesn't need filters as it doesn't actually include code
"visibilityFilters": {},
"validation": {
"invalidLink": true,
"notDocumented": false,
// Validated when building the API docs
"notExported": false,
},
"hostedBaseUrl": "https://typedoc.org/",
"redirects": {
"guides/": "documents/Overview.html",
"guides/overview/": "documents/Overview.html",
"guides/installation/": "index.html",
"guides/options/": "documents/Options.html",
"options/": "documents/Options.html",
"options/configuration/": "documents/Options.Configuration.html",
"options/input/": "documents/Options.Input.html",
"options/output/": "documents/Options.Output.html",
"options/comments/": "documents/Options.Comments.html",
"options/organization/": "documents/Options.Organization.html",
"options/validation/": "documents/Options.Validation.html",
"options/other/": "documents/Options.Other.html",
// cspell: words doccomments
"guides/doccomments/": "documents/Doc_Comments.html",
"guides/documents/": "documents/External_Documents.html",
"guides/themes/": "documents/Themes.html",
"guides/plugins/": "documents/Plugins.html",
"guides/declaration-references/": "documents/Declaration_References.html",
"guides/development/": "documents/Development.html",
"guides/changelog/": "documents/Changelog.html",
// Tags
"guides/tags/": "documents/Tags.html",
"tags/alpha/": "documents/Tags._alpha.html",
"tags/beta/": "documents/Tags._beta.html",
"tags/category/": "documents/Tags._category.html",
"tags/categoryDescription/": "documents/Tags._category.html",
"tags/defaultValue/": "documents/Tags._defaultValue.html",
"tags/deprecated/": "documents/Tags._deprecated.html",
"tags/document/": "documents/Tags._document.html",
"tags/enum/": "documents/Tags._enum.html",
"tags/event/": "documents/Tags._event.html",
"tags/eventProperty/": "documents/Tags._eventProperty.html",
"tags/example/": "documents/Tags._example.html",
"tags/experimental/": "documents/Tags._experimental.html",
"tags/group/": "documents/Tags._group.html",
"tags/groupDescription/": "documents/Tags._groupDescription.html",
"tags/hidden/": "documents/Tags._hidden.html",
"tags/hideconstructor/": "documents/Tags._hideconstructor.html",
"tags/ignore/": "documents/Tags._ignore.html",
"tags/inheritDoc/": "documents/Tags.__inheritDoc_.html",
"tags/interface/": "documents/Tags._interface.html",
"tags/internal/": "documents/Tags._internal.html",
"tags/label/": "documents/Tags.__label_.html",
"tags/link/": "documents/Tags.__link_.html",
"tags/module/": "documents/Tags._module.html",
"tags/namespace/": "documents/Tags._namespace.html",
"tags/overload/": "documents/Tags._overload.html",
"tags/override/": "documents/Tags._override.html",
"tags/packageDocumentation/": "documents/Tags._packageDocumentation.html",
"tags/param/": "documents/Tags._param.html",
"tags/private/": "documents/Tags._private.html",
"tags/privateRemarks/": "documents/Tags._privateRemarks.html",
"tags/property/": "documents/Tags._property.html",
"tags/protected/": "documents/Tags._protected.html",
"tags/public/": "documents/Tags._public.html",
"tags/readonly/": "documents/Tags._readonly.html",
"tags/remarks/": "documents/Tags._remarks.html",
"tags/returns/": "documents/Tags._returns.html",
"tags/satisfies/": "documents/Tags.TypeScript_Tags.html",
"tags/sealed/": "documents/Tags._sealed.html",
"tags/see/": "documents/Tags._see.html",
"tags/template/": "documents/Tags._template.html",
"tags/throws/": "documents/Tags._throws.html",
"tags/typeParam/": "documents/Tags._typeParam.html",
"tags/virtual/": "documents/Tags._virtual.html",
},
}