-
Notifications
You must be signed in to change notification settings - Fork 2
/
.jsdoc.conf.js
71 lines (70 loc) · 1.57 KB
/
.jsdoc.conf.js
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
'use strict';
module.exports = {
plugins: ['plugins/markdown'],
recurseDepth: 10,
source: {
include: [
'lib/clients/paymeter/index.js',
'lib/clients/hyperion/index.js',
'lib/clients/platform/index.js',
'lib/clients/platform/modules/',
'lib/clients/privatehive/index.js',
'lib/clients/privatehive/modules/',
],
includePattern: '.+\\.js?$',
},
sourceType: 'module',
tags: {
allowUnknownTags: true,
dictionaries: ['jsdoc'],
},
templates: {
cleverLinks: false,
monospaceLinks: true,
},
opts: {
template: 'node_modules/docdash',
destination: './docs/',
readme: './README.md',
},
docdash: {
static: true,
sort: true,
sectionOrder: ['Classes', 'Modules', 'Externals', 'Events', 'Namespaces', 'Mixins', 'Tutorials', 'Interfaces'],
disqus: 'https://forum.blockcluster.io/',
openGraph: {
title: 'Blockcluster',
type: 'website',
image: '',
site_name: '',
url: '',
},
meta: {
title: 'Blockcluster NodeJS SDK',
description: '',
keyword: '',
},
search: true,
collapse: true,
wrap: true,
typedefs: true,
navLevel: 3,
private: true,
removeQuotes: 'trim',
scripts: [],
menu: {
'Project Website': {
href: 'https://www.blockcluster.io/',
target: '_blank',
class: 'menu-item',
id: 'website_link',
},
Forum: {
href: 'https://forum.blockcluster.io/',
target: '_blank',
class: 'menu-item',
id: 'forum_link',
},
},
},
};