-
-
Notifications
You must be signed in to change notification settings - Fork 721
/
Copy pathtypedoc.json
76 lines (74 loc) · 1.93 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
70
71
72
73
74
75
76
{
"$schema": "https://typedoc.org/schema.json",
"intentionallyNotExported": [
"SORT_STRATEGIES",
"_ModelToObject",
"EventHooksMomento",
"MarkedPlugin",
"MeaningKeywords"
],
"sort": [
"kind",
"instance-first",
"required-first",
"alphabetical-ignoring-documents"
],
"name": "TypeDoc API",
"outputs": [
{
"name": "html",
"path": "../docs"
},
{
"name": "json",
"path": "../docs/docs.json"
}
],
"excludeExternals": true,
"excludeInternal": false,
"excludePrivate": true,
// "excludeReferences": true,
"groupReferencesByType": true,
"jsDocCompatibility": false,
"treatWarningsAsErrors": false,
"categorizeByGroup": false,
"categoryOrder": ["Reflections", "Types", "Comments", "*"],
"groupOrder": ["Common", "Namespaces", "*"],
"navigationLinks": {
"Docs": "https://typedoc.org",
"Example": "https://typedoc.org/example/index.html",
"GitHub": "https://github.com/TypeStrong/typedoc"
},
"validation": {
"notExported": true,
"invalidLink": true,
"notDocumented": false
},
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"external": false,
"@internal": false
},
"searchInComments": true,
"searchInDocuments": true,
"searchGroupBoosts": {
"Classes": 2.0,
"Interfaces": 2.0,
"Enumerations": 2.0,
"Type Aliases": 2.0
},
"navigation": {
"includeCategories": true,
"includeGroups": false,
"excludeReferences": true
},
"includeVersion": true,
"logLevel": "Verbose",
"externalSymbolLinkMappings": {
"@types/markdown-it": {
"MarkdownIt": "https://markdown-it.github.io/markdown-it/#MarkdownIt"
}
}
}