-
Notifications
You must be signed in to change notification settings - Fork 27
/
jsdoc.json
48 lines (48 loc) · 884 Bytes
/
jsdoc.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
{
"plugins": [
"node_modules/better-docs/typescript"
],
"source": {
"include": [ "src" ],
"exclude": [
"dist",
"lib",
"node_modules",
"scripts",
"test"
],
"includePattern": "\\.(ts|tsx)$"
},
"sourceType": "module",
"opts": {
"destination": "docs",
"readme": "DOCUMENTATION.md",
"recurse": true,
"template": "node_modules/better-docs"
},
"tags": {
"allowUnknownTags": ["optional"]
},
"templates": {
"better-docs": {
"name": "SimpleCrypto Documentation",
"title": "SimpleCrypto Documentation",
"hideGenerator": false,
"navigation": [
{
"label": "GitHub",
"href": "https://github.com/danang-id/simple-crypto-js"
},
{
"label": "NPM",
"href": "https://www.npmjs.com/package/simple-crypto-js"
}
]
},
"default": {
"outputSourceFiles": false,
"search": true
},
"search": true
}
}