-
-
Notifications
You must be signed in to change notification settings - Fork 179
/
Copy pathtypedoc.json
27 lines (27 loc) · 820 Bytes
/
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
{
"plugin": ["typedoc-plugin-markdown"],
"out": "./docs/guide/types",
"entryPoints": ["./src/index.ts"],
"membersWithOwnFile": ["Enum", "Interface", "TypeAlias"],
"excludeProtected": true,
"excludePrivate": true,
"excludeInternal": true,
"excludeReferences": true,
"includeVersion": true,
"hideParameterTypesInTitle": true,
"readme": "none",
"flattenOutputFiles": true,
"hidePageHeader": true,
"hideBreadcrumbs": false,
"excludeGroups": true,
"useCodeBlocks": true,
"expandObjects": true,
"expandParameters": true,
"hideGenerator": true,
"parametersFormat": "table",
"propertiesFormat": "table",
"enumMembersFormat": "table",
"typeDeclarationFormat": "table",
"indexFormat": "table",
"name": "RevoGrid Documentation"
}