-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtypedoc.json
More file actions
74 lines (74 loc) · 1.79 KB
/
typedoc.json
File metadata and controls
74 lines (74 loc) · 1.79 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["src/index.ts"],
"plugin": ["typedoc-plugin-markdown"],
"out": "docs/api",
"readme": "none",
"hideGenerator": true,
"name": "UiPath TypeScript SDK",
"excludePrivate": true,
"excludeProtected": true,
"excludeInternal": true,
"excludeNotDocumented": false,
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": false
},
"excludeTags": ["@ignore"],
"sort": ["alphabetical"],
"kindSortOrder": [
"Document",
"Project",
"Module",
"Namespace",
"Enum",
"EnumMember",
"Class",
"Interface",
"TypeAlias",
"Constructor",
"Property",
"Variable",
"Function",
"Method",
"Accessor",
"GetSignature",
"SetSignature",
"CallSignature",
"ConstructorSignature"
],
"gitRevision": "main",
"gitRemote": "origin",
"includeVersion": true,
"categorizeByGroup": false,
"searchInComments": true,
"searchInDocuments": true,
"cleanOutputDir": false,
"titleLink": "https://uipath.github.io/uipath-typescript/",
"navigationLinks": {
"Home": "https://uipath.github.io/uipath-typescript/",
"GitHub": "https://github.com/UiPath/uipath-typescript"
},
"parametersFormat": "table",
"hidePageTitle": true,
"interfacePropertiesFormat": "table",
"classPropertiesFormat": "table",
"disableSources": true,
"hideGroupHeadings": true,
"tableColumnSettings": {
"hideInherited": true,
"hideOverrides": true,
"hideSources": true
},
"useHTMLEncodedBrackets": true,
"sanitizeComments": false,
"formatWithPrettier": false,
"useCodeBlocks": false,
"expandObjects": true,
"expandParameters": true,
"hideBreadcrumbs": true,
"hidePageHeader": true,
"flattenOutputFiles": false,
"mergeReadme": false
}