-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathtypedoc.json
More file actions
43 lines (43 loc) · 1.13 KB
/
typedoc.json
File metadata and controls
43 lines (43 loc) · 1.13 KB
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
{
"$schema": "https://typedoc-plugin-markdown.org/schema.json",
"entryPoints": ["packages/*"],
"name": "API Reference",
"entryPointStrategy": "packages",
"exclude": ["packages/tsconfig"],
"plugin": ["typedoc-plugin-markdown"],
"publicPath": "/docs/api-reference",
"fileExtension": ".mdx",
"githubPages": false,
"hideBreadcrumbs": false,
"entryFileName": "page",
"mergeReadme": false,
"hidePageHeader": true,
"useCodeBlocks": true,
"readme": "none",
"hideGroupHeadings": true,
"indexFormat": "table",
"parametersFormat": "table",
"interfacePropertiesFormat": "table",
"classPropertiesFormat": "table",
"enumMembersFormat": "table",
"propertyMembersFormat": "table",
"typeDeclarationFormat": "table",
"excludeScopesInPaths": true,
"outputFileStrategy": "members",
"formatWithPrettier": true,
"cleanOutputDir": true,
"headings": {
"readme": false,
"document": false
},
"packageOptions": {
"alwaysCreateEntryPointModule": true
},
"treatWarningsAsErrors": true,
"outputs": [
{
"name": "markdown",
"path": "./apps/web/src/app/(docs)/docs/api-reference"
}
]
}