-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypedoc.json
More file actions
28 lines (28 loc) · 726 Bytes
/
typedoc.json
File metadata and controls
28 lines (28 loc) · 726 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
26
27
28
{
"$schema": "https://typedoc-plugin-markdown.org/schema.json",
"plugin": ["typedoc-plugin-markdown", "typedoc-github-wiki-theme"],
"entryPoints": ["src/*"],
"tsconfig": "tsconfig.app.json",
"out": "./docs",
"exclude": [
"**/*.cy.ts",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.*spec*.ts",
"**/*.*spec*.tsx",
"**/*.stories.ts",
"**/*.stories.tsx"
],
"readme": "README.md",
"hideBreadcrumbs": false,
"hidePageTitle": false,
"hideInPageTOC": false,
"hideMembersSymbol": false,
"sort": ["source-order"],
"includeVersion": true,
"gitRevision": "master",
"toc": ["modules", "classes", "interfaces", "enums", "functions", "types"],
"namedAnchors": true,
"publicPath": "/docs/",
"cleanOutputDir": true
}