Setup jsdoc configuration and output placeholder

master
tetedacier 2018-05-29 10:42:33 +02:00
parent c965d6b5f2
commit 2293b122d8
2 changed files with 23 additions and 0 deletions

2
.jsdoc/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# jsdoc's output folder
out

21
.jsdoc/configuration.json Normal file
View File

@ -0,0 +1,21 @@
{
"recurseDepth": 10,
"source": {
"exclude": [
"node_modules",
"dist"
]
},
"sourceType": "module",
"tags": {
"allowUnknownTags": true
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false
},
"opts":{
"recurse": true,
"destination": ".jsdoc/out"
}
}