-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypedoc.rockets.json
38 lines (38 loc) · 1.04 KB
/
typedoc.rockets.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
{
"tsconfig": ["./.tmp/repos/rockets/tsconfig.json"],
"entryPoints": ["./.tmp/repos/rockets/packages/*"],
"exclude": [
"**/*+(index|.spec|.e2e).ts",
"./.tmp/repos/rockets/packages/nestjs-samples"
],
"excludeExternals": true,
"name": "Rockets",
"plugin": [
"typedoc-plugin-markdown",
"./plugins/docs/typedoc-markdown-nextra.mjs"
],
"out": "./pages/reference/rockets",
"entryPointStrategy": "packages",
"fileExtension": ".mdx",
"theme": "customTheme",
"excludeScopesInPaths": true,
"includeVersion": false,
"hidePageHeader": true,
"hideBreadcrumbs": true,
"parametersFormat": "table",
"interfacePropertiesFormat": "table",
"classPropertiesFormat": "table",
"enumMembersFormat": "table",
"typeDeclarationFormat": "table",
"propertyMembersFormat": "table",
"tableColumnSettings": {
"hideDefaults": false,
"hideInherited": false,
"hideModifiers": false,
"hideOverrides": false,
"hideSources": true,
"hideValues": false,
"leftAlignHeaders": false
},
"logLevel": "Verbose"
}