Package Exports
- esdoc-node-plugin
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (esdoc-node-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
esdoc-node-plugin
Node.js Module Plugin for ESDoc to include references to all internal node modules (like "events", "buffer", ...) as builtin externals in your ESDoc documentation and all your npm dependencies (like "esdoc", ...).
Usage
Install it:
npm install esdoc-node-plugin --save-dev
And include it in the plugin
array of esdoc.json
:
{
"source": "./src",
"destination": "./doc",
"plugins": [
{ "name": "esdoc-node-plugin", "option": {
"base": ".",
"devDependencies": false
}}
]
}
Options
base : string | boolean
absolute or relative path to the package.json of your project. If false
, no
npm dependencies will be included.
default: false
devDependencies : boolean
include npm development dependencies. default: false