forked from FrankerFaceZ/FrankerFaceZ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
25 lines (25 loc) · 720 Bytes
/
typedoc.json
File metadata and controls
25 lines (25 loc) · 720 Bytes
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
{
"$schema": "https://typedoc.org/schema.json",
"plugin": [
"typedoc-plugin-no-inherit",
"typedoc-plugin-mdn-links",
"typedoc-plugin-rename-defaults",
"typedoc-plugin-markdown"
],
//"out": "./distdocs",
"out": "../ffz-docs/docs/dev/client",
"hideBreadcrumbs": true,
"hideInPageTOC": true,
// Vite has a bug surrounding "." characters in names.
"filenameSeparator": "_",
"excludePrivate": true,
"excludeInternal": true,
"excludeNotDocumented": true,
"excludeNotDocumentedKinds": ["Property", "Interface", "TypeAlias"],
"disableGit": true,
"sourceLinkTemplate": "https://github.com/FrankerFaceZ/FrankerFaceZ/blob/master/{path}#L{line}",
"entryPoints": [
"./src/**/*.ts",
"./src/**/*.tsx"
],
}