diff options
Diffstat (limited to 'development/.jsdoc.json')
-rw-r--r-- | development/.jsdoc.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/development/.jsdoc.json b/development/.jsdoc.json new file mode 100644 index 000000000..fd90bf89f --- /dev/null +++ b/development/.jsdoc.json @@ -0,0 +1,25 @@ +{ + "tags": { + "allowUnknownTags": false + }, + "source": { + "include": "app/scripts/", + "includePattern": ".js$", + "excludePattern": "(node_modules/|docs)" + }, + "plugins": [ + "plugins/markdown" + ], + "opts": { + "template": "node_modules/radgrad-jsdoc-template/", + "encoding": "utf8", + "destination": "docs/jsdocs", + "recurse": true, + "verbose": true + }, + "templates": { + "cleverLinks": false, + "monospaceLinks": false + } +} + |