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
Since Angular version 10 the Angular cli warns about used CommonJS dependencies, because they can cause larger bundle sizes. See https://angular.io/guide/build#configuring-commonjs-dependencies for reference.
The cli warnings are currently suppressed by the allowedCommonJsDependencies option:
allowedCommonJsDependencies
webui/angular.json
Lines 29 to 50 in e091b8a
We should try to only use ECMAScript modules in the future. Some dependencies like web3 are already working on providing an ES module.
The text was updated successfully, but these errors were encountered:
Using import { BigNumber } from 'bignumber.js/bignumber'; should fix it for bignumber.js, see MikeMcl/bignumber.js#278
import { BigNumber } from 'bignumber.js/bignumber';
Sorry, something went wrong.
No branches or pull requests
Since Angular version 10 the Angular cli warns about used CommonJS dependencies, because they can cause larger bundle sizes. See https://angular.io/guide/build#configuring-commonjs-dependencies for reference.
The cli warnings are currently suppressed by the
allowedCommonJsDependencies
option:webui/angular.json
Lines 29 to 50 in e091b8a
We should try to only use ECMAScript modules in the future. Some dependencies like web3 are already working on providing an ES module.
The text was updated successfully, but these errors were encountered: