-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.json
69 lines (69 loc) · 1.63 KB
/
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
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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./**/*.ts", "./**/*.tsx"],
"exclude": ["**/node_modules/**"],
"excludePrivate": true,
"excludeProtected": true,
"readme": "none",
"hideGenerator": true,
"sort": ["source-order"],
"plugin": ["typedoc-plugin-markdown"],
"out": "./docs",
"kindSortOrder": [
"Reference",
"Project",
"Module",
"Namespace",
"Enum",
"EnumMember",
"Class",
"Interface",
"TypeAlias",
"Constructor",
"Property",
"Variable",
"Function",
"Accessor",
"Method",
"Parameter",
"TypeParameter",
"TypeLiteral",
"CallSignature",
"ConstructorSignature",
"IndexSignature",
"GetSignature",
"SetSignature"
],
"membersWithOwnFile": [
"Enum",
"Variable",
"Function",
"Class",
"Interface",
"TypeAlias"
],
"flattenOutputFiles": true,
"fileExtension": ".md",
"useCodeBlocks": true,
"expandParameters": true,
"formatWithPrettier": true,
"prettierConfigFile": ".prettierrc",
"indexFormat": "table",
"parametersFormat": "table",
"interfacePropertiesFormat": "table",
"classPropertiesFormat": "table",
"enumMembersFormat": "table",
"typeDeclarationFormat": "table",
"tableColumnSettings": {
"hideDefaults": false,
"hideInherited": false,
"hideModifiers": false,
"hideOverrides": false,
"hideSources": false,
"hideValues": false,
"leftAlignHeaders": false
},
"groupOrder": ["Variables", "Functions", "*"],
"sanitizeComments": true,
"customFooterHtml": "Copyright <strong>Its-Satyajit</strong> 2025. All rights reserved."
}