Adding a JSDoc configuration for generating metadata on exported symbols

This generates info for all symbols annotated with "@todo api" (when Plovr is replaced, this will become "@api").  Generated metadata is written to stdout.  A separate process will handle the output.
This commit is contained in:
Tim Schaub
2014-02-05 18:30:14 -07:00
parent debbd83d8b
commit 9800b38250
3 changed files with 76 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"opts": {
"recurse": true,
"template": "buildcfg/jsdoc/symbols"
},
"tags": {
"allowUnknownTags": true
},
"source": {
"includePattern": "\\.js$"
},
"plugins": [
"buildcfg/jsdoc/symbols/todo-plugin"
]
}