-
Notifications
You must be signed in to change notification settings - Fork 28
/
jsdoc.json
50 lines (50 loc) · 1.19 KB
/
jsdoc.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
{
"opts": {
"encoding": "utf8",
"destination": "docs",
"package": "package.json",
"readme": "README.md",
"recurse": true,
"template": "node_modules/jsdoc-wmf-theme",
"class-hierarchy": {
"showList": true
}
},
"plugins": [
"plugins/markdown",
"node_modules/jsdoc-class-hierarchy",
"node_modules/jsdoc-wmf-theme/plugins/allow-dots-in-modules",
"node_modules/jsdoc-wmf-theme/plugins/betterlinks",
"node_modules/jsdoc-wmf-theme/plugins/externals",
"node_modules/jsdoc-wmf-theme/plugins/summarize",
"build/jsdoc-peculiar-static"
],
"recurseDepth": 10,
"source": {
"include": [ "src" ],
"includePattern": ".+\\.js$"
},
"tags": {
"allowUnknownTags": [ "chainable" ],
"dictionaries": [ "jsdoc" ]
},
"templates": {
"cleverLinks": true,
"default": {
"useLongnameInNav": true
},
"wmf": {
"maintitle": "OOUI",
"repository": "https://gerrit.wikimedia.org/g/oojs/ui/",
"hideSections": [ "Events" ],
"prefixMap": {
"OO.ui.": true
},
"linkMap": {
"EventEmitter": "https://nodejs.org/api/events.html#events_class_eventemitter",
"Request": "http://expressjs.com/en/api.html#req",
"Response": "http://expressjs.com/en/api.html#res"
}
}
}
}