-
-
Notifications
You must be signed in to change notification settings - Fork 335
/
typedoc.json
42 lines (41 loc) · 1.09 KB
/
typedoc.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
{
// Comments are supported, like tsconfig.json
"entryPoints": ["packages/altair-core/src/*"],
"entryPointStrategy": "expand",
"out": "packages/altair-docs/api/core",
"docsRoot": "./packages/altair-docs",
"entryFileName": "index.md",
"plugin": ["typedoc-plugin-markdown", "typedoc-vitepress-theme"],
"tsconfig": "packages/altair-core/tsconfig.json",
"exclude": [
"**/node_modules/**",
"**/__tests__/**",
"**/__mocks__/**",
"**/__fixtures__/**",
"**/__snapshots",
"**/*+(index|.spec|.e2e).ts"
],
"readme": "none",
"githubPages": false,
"indexFormat": "table",
"hideBreadcrumbs": true,
"expandParameters": true,
"useCodeBlocks": false,
"disableSources": true,
"textContentMappings": {
"title.indexPage": "API Reference",
"title.memberPage": "{name}"
},
// "flattenOutputFiles": true,
"excludeGroups": true,
"excludePrivate": true,
"excludeReferences": true,
"excludeInternal": true,
// "excludeNotDocumented": true,
"sidebar": {
"autoConfiguration": true,
"format": "vitepress",
"pretty": true,
"collapsed": true
}
}