1. babel-preset-latest
Babel preset including es2015+
babel-preset-latest
Package: babel-preset-latest
Created by: babel
Last modified: Mon, 13 Jun 2022 04:07:17 GMT
Version: 6.24.1
License: MIT
Downloads: 95,503
Repository: https://github.com/babel/babel/tree/master/packages/babel-preset-latest

Install

npm install babel-preset-latest
yarn add babel-preset-latest

babel-preset-latest

Babel preset including es2015, es2016, es2017.

Install

 npm install --save-dev babel-preset-latest

Usage

Via .babelrc (Recommended)

.babelrc

 {
  "presets": ["latest"]
}

Via CLI

 babel script.js --presets latest

Via Node API

 require("babel-core").transform("code", {
  presets: ["latest"]
});

Options

es2015

boolean, defaults to true.

Toggles including plugins from the es2015 preset.

 {
  "presets": [
    ["latest", {
      "es2015": false
    }]
  ]
}

You can also pass options down to the es2015 preset.

 {
  "presets": [
    ["latest", {
      "es2015": {
        "modules": false
      }
    }]
  ]
}

Note: This also works for the other preset-year options below.

es2016

boolean, defaults to true.

Toggles including plugins from the es2016 preset.

es2017

boolean, defaults to true.

Toggles including plugins from the es2017 preset.

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin