Package Exports
- @itsjamie/esdoc-ecmascript-proposal-plugin
- @itsjamie/esdoc-ecmascript-proposal-plugin/src/Plugin.js
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 (@itsjamie/esdoc-ecmascript-proposal-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 ECMAScript Proposal Plugin
Install
npm install @itsjamie/esdoc-ecmascript-proposal-plugin
Config
{
"source": "./src",
"destination": "./doc",
"plugins": [
{"name": "@itsjamie/esdoc-ecmascript-proposal-plugin", "option": {"all": true}}
]
}
If you want to enable each proposals,
{
"source": "./src",
"destination": "./doc",
"plugins": [
{
"name": "@itsjamie/esdoc-ecmascript-proposal-plugin",
"option": {
"classProperties": true,
"objectRestSpread": true,
"doExpressions": true,
"functionBind": true,
"functionSent": true,
"asyncGenerators": true,
"decorators": true,
"exportExtensions": true,
"dynamicImport": true
}
}
]
}
LICENSE
MIT