UNPKG

@itsjamie/esdoc-ecmascript-proposal-plugin

Version:

A ECMAScript proposal plugin for ESDoc

47 lines (42 loc) 872 B
# ESDoc ECMAScript Proposal Plugin ## Install ``` npm install @itsjamie/esdoc-ecmascript-proposal-plugin ``` ## Config ```json { "source": "./src", "destination": "./doc", "plugins": [ {"name": "@itsjamie/esdoc-ecmascript-proposal-plugin", "option": {"all": true}} ] } ``` If you want to enable each proposals, ```json { "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](https://github.com/h13i32maru)