🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

babel-preset-htoooth

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-preset-htoooth

A Babel preset for my env.

latest
Source
npmnpm
Version
1.0.14
Version published
Weekly downloads
15
650%
Maintainers
1
Weekly downloads
 
Created
Source

babel-preset-htoooth

Setting babel in my way.

usage

This preset includes @babel/preset-env, so you don't need to install @babel/preset-env.

Default setting:

const presets = [
  ["@babel/env", {
    targets: {
      browsers: ["> 1%", "last 2 versions", "not ie <= 8"]
    },
    useBuiltIns: "usage",
  }]
];

how to use


// Set your `babel.config.js` .

// babel.config.js
module.exports = {
  presets: ['htoooth']
};

// if all is true, add all proposal plugins
module.exports = {
  presets: [
    ['htoooth', {
      corejs: false, // defaullt false, same as @babel/plugin-transform-runtim 's options corejs
      all: true,
      targets: {}, // same as @babel/env targets
      useBuiltIns: "usage (default) | entry",
      modules: 'commonjs', // same as @babel/plugin-transform-runtim 's options modules
      useESModules: true,  // default true, @babel/plugin-transform-runtim 's options useESModules
    }]
  ]
};

if all is false (default), will load below plugins:

const defaultPlugins = [
  "@babel/plugin-transform-runtime",
  "@babel/plugin-syntax-dynamic-import",
  "@babel/plugin-syntax-import-meta",
  "@babel/plugin-proposal-export-namespace-from",
  "@babel/plugin-proposal-export-default-from",
];

And if all is true, will load plugins additionally:

const extPlugins = [
  "@babel/plugin-proposal-function-bind",
  "@babel/plugin-proposal-logical-assignment-operators",
  ["@babel/plugin-proposal-optional-chaining", { "loose": false }],
  ["@babel/plugin-proposal-pipeline-operator", { "proposal": "minimal" }],
  ["@babel/plugin-proposal-nullish-coalescing-operator", { "loose": false }],
  "@babel/plugin-proposal-do-expressions",
  ["@babel/plugin-proposal-decorators", { "legacy": true }],
  "@babel/plugin-proposal-function-sent",
  "@babel/plugin-proposal-numeric-separator",
  "@babel/plugin-proposal-throw-expressions",
  ["@babel/plugin-proposal-class-properties", { "loose": false }]
]

example

You can find examples in this repo.

Keywords

babel

FAQs

Package last updated on 20 Oct 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts