mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 12:55:55 +00:00
25 lines
720 B
JSON
25 lines
720 B
JSON
{
|
|
"$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"
|
|
],
|
|
}
|