JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 15274
  • Score
    100M100P100Q152485F
  • License MIT

A ECMAScript proposal plugin for ESDoc

Package Exports

  • @itsjamie/esdoc-ecmascript-proposal-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 (@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

Author

Ryo Maruyama@h13i32maru