-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.json
41 lines (41 loc) · 985 Bytes
/
conf.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
// JS Docs Configuration
// INSTALL GLOBALLY : sudo npm install -g jsdoc@"<=3.3.0"
// RUN ON COMMAND LINE : jsdoc -c conf.json
// TODO : Get Theme : https://github.com/davidshimjs/jaguarjs-jsdoc
{
"source":{
"include":[ "js/" ],
"exclude":[ "lib/" ]
},
"opts": {
"verbose": true,
//"template": "templates/jaguarjs",
"template": "templates/default", // same as -t templates/default
"encoding": "utf8", // same as -e utf8
"destination": "./docs/jsdocs", // same as -d ./out/
"recurse": true // same as -r
//"tutorials": "path/to/tutorials", // same as -u path/to/tutorials
},
"templates": {
"applicationName": "Postworld",
/*
"disqus": "",
"googleAnalytics": "",
"openGraph": {
"title": "",
"type": "website",
"image": "",
"site_name": "",
"url": ""
},
*/
"meta": {
"title": "",
"description": "",
"keyword": ""
},
"linenums": true,
"cleverLinks": true,
"monospaceLinks": true
}
}