-
Notifications
You must be signed in to change notification settings - Fork 2
/
.tjsdocrc
38 lines (35 loc) · 1.09 KB
/
.tjsdocrc
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
/* Some comments! You can include comments in TJSDoc config files */
{
// Load published NPM modules. Note that this will fail unless the following NPM modules are installed.
"publisher": "tjsdoc-publisher-static-html",
"runtime": "tjsdoc-babylon",
"source": ["src"],
"destination": "docs",
"access": ["public", "protected", "private"],
"builtinPluginVirtual": true,
"debug": false,
"emptyDestination": true,
"index": "./README.md",
"unexportIdentifier": true,
"package": "./package.json",
"test": {
"type": "mocha",
"source": "./node_modules/tjsdoc-tests-ecmascript/test/src"
},
"title": "TJSDoc"//,
/*
"publisherOptions": {
"manual": {
"asset": "./manual/asset",
"overview": ["./manual/overview.md", "./manual/feature.md"],
"installation": ["./manual/installation.md"],
"usage": ["./manual/usage.md", "./manual/api.md"],
"tutorial": ["./manual/tutorial.md"],
"configuration": ["./manual/configuration.md"],
"example": ["./manual/example.md"],
"faq": ["./manual/faq.md"],
"changelog": ["./CHANGELOG.md"]
}
}
*/
}