-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsdocrc.js
More file actions
39 lines (39 loc) · 930 Bytes
/
jsdocrc.js
File metadata and controls
39 lines (39 loc) · 930 Bytes
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
module.exports = {
plugins: ['plugins/markdown'],
recurseDepth: 2,
sourceType: 'module',
source: {
include: ['index.js'],
exclude: [__filename, 'test.*', 'node_modules/']
},
tags: {
allowUnknownTags: true
},
opts: {
template: 'node_modules/docdash',
encoding: 'utf8',
destination: './docs',
readme: './README.md',
package: './package.json',
recurse: true,
verbose: true
},
templates: {
cleverLinks: false,
monospaceLinks: false
},
docdash: {
sort: true,
private: false,
search: true,
collapse: true,
menu: {
'GitHub Repo': {
href: 'https://github.com/mitsuki31/temppath.git',
target: '_blank',
class: 'menu-item',
id: 'project_git_repo'
}
}
}
};