Package Exports
- esdoc-named-import-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-named-import-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 Named Import Plugin
This plugin turns basic import statements used in the generated documentation for classes into named imports.
Before:
import ClassName from 'package-name/path-to-class-name/ClassName';
After:
import {ClassName} from 'package-name';
Install
npm install esdoc-named-import-plugin
or
yarn add esdoc-named-import-plugin
Config
{
"source": "./src",
"destination": "./doc",
"plugins": [
{
"name": "esdoc-named-import-plugin"
}
]
}