forked from bbc/bigscreen-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsdoc.conf.json
70 lines (70 loc) · 1.85 KB
/
jsdoc.conf.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
{
"tags": {
"allowUnknownTags": true,
"dictionaries": [
"jsdoc"
]
},
"source": {
"include": [
"src"
],
"includePattern": ".js$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": [
"plugins/markdown"
],
"templates": {
"cleverLinks": false,
"monospaceLinks": true,
"useLongnameInNav": true,
"showInheritedInNav": true,
"default": {
"includeDate": false,
"staticFiles": {
"include": ["./docs/static"]
}
}
},
"opts": {
"destination": "./docs/api",
"encoding": "utf8",
"recurse": true,
"hierarchy": true,
"readme": "README.md",
"tutorials": "./docs/tutorials",
"template": "node_modules/clean-jsdoc-theme",
"theme_opts": {
"theme": "dark",
"title": "<img src='bsp-logo.png'/>",
"footer": "",
"search": {
"shouldSort": true,
"threshold": 0.4,
"location": 0,
"distance": 100,
"maxPatternLength": 32,
"minMatchCharLength": 1
},
"menu": [
{
"title": "Github",
"link": "https://github.com/bbc/bigscreen-player",
"target": "_blank"
},
{
"title": "NPM",
"link": "https://www.npmjs.com/package/bigscreen-player",
"target": "_blank"
}
],
"meta": [
{
"name": "description",
"content": "Simplified media playback for bigscreen devices"
}
]
}
}
}