forked from shipshapecode/shepherd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jsdoc.js
42 lines (41 loc) · 934 Bytes
/
.jsdoc.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
'use strict';
module.exports = {
tags: {
allowUnknownTags: true,
dictionaries: ['jsdoc']
},
source: {
include: [
'package.json',
'README.md',
'./src/js/shepherd.js',
'./src/js/step.js',
'./src/js/tour.js'
]
},
plugins: [
'plugins/markdown'
],
sourceType: 'module',
templates: {
referenceTitle: 'Shepherd.js',
favicon: '/landing/assets/favicons/favicon-32x32.png',
githubLink: 'https://github.com/shipshapecode/shepherd',
// Do not disable sorting
disableSort: false,
// Do not collapse, show all methods
collapse: false,
resources: {
Demo: 'https://shepherdjs.dev/'
}
},
opts: {
destination: './docs/',
encoding: 'utf8',
// Do not include functions marked `@private`
private: false,
recurse: true,
template: './node_modules/jsdoc-template-ship-shape',
tutorials: './docs-src/tutorials'
}
};