1.0.1 • Published 2 years ago

@tarantool.io/babel-config v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

@tarantool.io/babel-config

Sharable babel configuration for Tarantool projects.

Usage

// .babelrc.js
module.exports = require("@tarantool.io/babel-config")({
  // [default: true] enables production build configurations
  prod: true,
  // [default: true] enables the @emotion/babel-plugin plugin
  emotion: true,
  // [default: true] enables the @babel/preset-env preset
  presetEnv: true,
  // [default: false] enables the debug configuration in the @babel/preset-env preset
  debugBabelPresetEnv: false,
});