0.1.0 • Published 4 years ago

babel-runtime-corejs3 v0.1.0

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

babel-runtime-corejs3

npm bundle size npm downloads license

github

Usage

Get Started

npm install babel-runtime-corejs3

or

yarn add babel-runtime-corejs3

Config your webpack

resolve: {
  alias: {
    'babel-runtime': 'babel-runtime-corejs3',
  },
},

or rollup, using @rollup/plugin-alias

plugins: [
  alias({
    entries: [
      { find: 'babel-runtime', replacement: 'babel-runtime-corejs3' },
    ],
  }),
],