babel-runtime-corejs3
v0.1.0
Published
Use [email protected] with [email protected] or use both [email protected] and @babel/[email protected]
Downloads
57
Maintainers
Readme
babel-runtime-corejs3
Usage
- Use [email protected] with [email protected]
- Use both [email protected] and @babel/[email protected]
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' },
],
}),
],