-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjsdoc.conf.js
45 lines (44 loc) · 964 Bytes
/
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
module.exports = {
"source": {
"include": ".",
"excludePattern": ".*node_modules.*"
},
"sourceType": "script",
"plugins": [
"plugins/markdown"
],
"opts": {
"recurse": true,
"destination": "./jsdoc/",
"template": "node_modules/docdash"
},
"templates": {
"default": {
"outputSourceFiles": true,
"includeDate": false,
"useLongnameInNav": true
}
},
"tags": {
"allowUnknownTags": true,
},
"docdash": {
"sectionOrder": [
"Modules",
"Namespaces",
"Interfaces",
"Classes",
"Global",
"Externals",
"Events",
"Mixins",
"Tutorials",
],
"navLevel": 0,
"typedefs": true,
"collapse": true,
}
};
BigInt.prototype.toJSON = function() {
return this.toString() + 'n';
};