-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtypedoc.json
More file actions
41 lines (41 loc) · 918 Bytes
/
typedoc.json
File metadata and controls
41 lines (41 loc) · 918 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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"plugin": [
"typedoc-plugin-markdown",
"./typedoc-ignore-links.ts"
],
"out": "./tempdocs",
"entryPoints": [
"lib/index.ts",
"lib/xlsx/index.ts"
],
"cleanOutputDir": true,
"readme": "none",
"headings": {
"readme": false,
"document": false
},
"hidePageHeader": true,
"hideBreadcrumbs": true,
"hideGenerator": true,
"useCodeBlocks": true,
"expandObjects": true,
"expandParameters": true,
"propertiesFormat": "table",
"parametersFormat": "table",
"interfacePropertiesFormat": "table",
"typeAliasPropertiesFormat": "table",
"propertyMembersFormat": "table",
"typeDeclarationFormat": "table",
"disableSources": true,
"excludeInternal": true,
"excludePrivate": true,
"excludeProtected": true,
"pageTitleTemplates": {
"member": "{name}"
},
"validation": {
"invalidLink": false,
"notExported": true,
"notDocumented": true,
}
}