-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.json
59 lines (59 loc) · 1.28 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
{
"name": "使用typedoc生成TypeScript的API文档",
"sort": [
"source-order"
],
"validation": {
"notExported": true,
"invalidLink": true,
"notDocumented": true
},
"visibilityFilters": {
"protected": true,
"private": true,
"inherited": true,
"external": true,
"@alpha": true,
"@beta": true,
"@experimental": true,
"@deprecated": true,
"@enum": true,
"@hidden": true,
"@internal": true
},
"categorizeByGroup": true,
"cleanOutputDir": true,
"commentStyle": "jsdoc",
"darkHighlightTheme": "dark-plus",
"defaultCategory": "Other",
"disableSources": false,
"emit": "docs",
"entryPointStrategy": "resolve",
"excludeExternals": false,
"excludeInternal": false,
"excludeNotDocumented": false,
"excludePrivate": false,
"excludeProtected": false,
"hideGenerator": false,
"lang": "zh",
"includeVersion": true,
"lightHighlightTheme": "light-plus",
"logLevel": 1,
"preserveWatchOutput": true,
"pretty": true,
"readme": "none",
"showConfig": false,
"skipErrorChecking": false,
"theme": "my-theme",
"plugin": [
"@mxssfd/typedoc-theme"
],
"treatWarningsAsErrors": false,
"watch": false,
"externalPattern": [
"**/node_modules/**"
],
"exclude": [
"**/node_modules/**"
]
}