We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
babel-polyfill
transform-runtime
Should include babel-polyfill as a runtime dependency, since it's imported by the es6 source, and the transpiled code ends up with require statements for core-js and regenerator-runtime. See http://babeljs.io/docs/usage/polyfill/#installation.
es6
require
core-js
regenerator-runtime
Though generally it's preferred to use the transform runtime plugin for libraries, since that won't pollute the global scope.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Should include
babel-polyfill
as a runtime dependency, since it's imported by thees6
source, and the transpiled code ends up withrequire
statements forcore-js
andregenerator-runtime
. See http://babeljs.io/docs/usage/polyfill/#installation.Though generally it's preferred to use the transform runtime plugin for libraries, since that won't pollute the global scope.
The text was updated successfully, but these errors were encountered: