2.6.0-dev.1 • Published 9 months ago

@enterthenamehere/esdoc-ecmascript-proposal-plugin v2.6.0-dev.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 months ago

ESDoc ECMAScript Proposal Plugin

Use with updated EnterTheNameHere/esdoc-monorepo. Original esdoc is here.

Install

npm install @enterthenamehere/esdoc-ecmascript-proposal-plugin

Config

{
  "source": "./src",
  "destination": "./doc",
  "plugins": [
    {"name": "@enterthenamehere/esdoc-ecmascript-proposal-plugin", "option": {"all": true}}
  ]
}

If you want to enable each proposals,

{
  "source": "./src",
  "destination": "./doc",
  "plugins": [
    {
      "name": "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