diff options
Diffstat (limited to 'node_modules/babel-preset-es2015/README.md')
-rw-r--r-- | node_modules/babel-preset-es2015/README.md | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/node_modules/babel-preset-es2015/README.md b/node_modules/babel-preset-es2015/README.md deleted file mode 100644 index 77340ab..0000000 --- a/node_modules/babel-preset-es2015/README.md +++ /dev/null @@ -1,57 +0,0 @@ -# babel-preset-es2015 - -> Babel preset for all es2015 plugins. - -## Install - -```sh -npm install --save-dev babel-preset-es2015 -``` - -## Usage - -### Via `.babelrc` (Recommended) - -**.babelrc** - -```json -{ - "presets": ["es2015"] -} -``` - -### Via CLI - -```sh -babel script.js --presets es2015 -``` - -### Via Node API - -```javascript -require("babel-core").transform("code", { - presets: ["es2015"] -}); -``` - -## Options - -### `loose` - -`boolean`, defaults to `false`. - -Enable "loose" transformations for any plugins in this preset that allow them. - -### `modules` - -`"amd" | "umd" | "systemjs" | "commonjs" | false`, defaults to `"commonjs"`. - -Enable transformation of ES6 module syntax to another module type. - -Setting this to `false` will not transform modules. - -### `spec` - -`boolean`, defaults to `false`. - -Enable "spec" transformations for any plugins in this preset that allow them. |