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
Most bundle tool (e.g. rollup & Webpack ) should assume the entry file specify by "main" field of the package.json is a CJS module without any es2015.
CJS
The current index.js file contains const keyword will cause issues to minifier (e.g. uglify) as they are supposed to work with transpiled code only.
index.js
const
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Most bundle tool (e.g. rollup & Webpack ) should assume the entry file specify by "main" field of the package.json is a
CJS
module without any es2015.The current
index.js
file containsconst
keyword will cause issues to minifier (e.g. uglify) as they are supposed to work with transpiled code only.The text was updated successfully, but these errors were encountered: