| 1234567891011121314151617181920212223242526272829303132333435 |
- {
- "opts": {
- "encoding": "utf8", // same as -e utf8
- "destination": "./o2web/jsdoc/", // same as -d ./out/
- "recurse": true, // same as -r
- "template" : "./node_modules/tidy-jsdoc",
- "prism-theme": "prism-custom"
- // "tutorials": "./o2web/tutorials" // same as -u path/to/tutorials
- },
- "tags": {
- "allowUnknownTags": true,
- "dictionaries": [
- "jsdoc",
- "closure"
- ]
- },
- "source": {
- "include": ["./o2web/source/x_component_process_Xform","./o2web/source/o2_core/o2/xScript"],
- "includePattern": ".+\\.js(doc|x)?$",
- "excludePattern": "(^|\\/|\\\\)_"
- },
- "plugins": [
- "plugins/markdown",
- "plugins/summarize"
- ],
- "templates": {
- "cleverLinks": false,
- "monospaceLinks": false
- },
- "metadata": {
- "title": "O2OA前台API"
- }
- }
- //执行命令: jsdoc -c ./o2web/jsdoc.conf.json
|