-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsdoc.json
54 lines (54 loc) · 1.26 KB
/
tsdoc.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
49
50
51
52
53
54
{
"tags":
{
"allowUnknownTags" : true
},
"plugins":[
"plugins/markdown"
,"node_modules/tsdoc/template/plugins/TSDoc.js"
],
"opts":
{
"template": "docdash",
"recurse": "true",
"fixedMenu": "menu.md"
},
"templates": {
"cleverLinks" : true,
"monospaceLinks" : false,
"______________________________________": "For DocStrap themes",
"dateFormat": "ddd MMM Do YYYY",
"outputSourceFiles": true,
"outputSourcePath": true,
"systemName": "DocStrap",
"footer": "<link rel='stylesheet' href='styles/custom.css'/>",
"copyright": "Copyright © 2013 cashfarm - Unlicensed",
"navType": "vertical",
"theme": "yeti",
"linenums": false,
"collapseSymbols": false,
"inverseNav": false,
"highlightTutorialCode": true,
"protocol": "html://",
"syntaxTheme": "dark"
},
"source":
{
"includePattern": "\\.ts$"
},
"markdown" : {
"parser" : "gfm",
"hardwrap" : true
},
"tsdoc":{
"source" : "src/",
"destination" : "docs/",
"tutorials" : "wiki/",
"systemName" : "cashfarm Core",
"footer" : "<link rel='stylesheet' href='styles/custom.css'/>",
"copyright" : "Copyright © 2013 cashfarm - Unlicensed",
"outputSourceFiles" : true,
"commentsOnly": true,
"excludeTutorials": "_Sidebar"
}
}