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
Follow up of the discussion on #203
Currently, the SDK is imported globally, and the compilers cannot optimize the imports and remove unused code.
Firebase have a great explanation https://firebase.googleblog.com/2021/08/the-new-firebase-js-sdk-now-ga.html?m=1
This would allow to reduce the compiled client side app by eliminating the unused code.
This would also allow to fix #203 by allowing to create instances the Parse library for those who need to interact with multiple Servers.
https://www.codingame.com/playgrounds/7463/tree-shaking-in-javascript-with-rollup
The text was updated successfully, but these errors were encountered:
No branches or pull requests
New Feature / Enhancement Checklist
Current Limitation
Follow up of the discussion on #203
Currently, the SDK is imported globally, and the compilers cannot optimize the imports and remove unused code.
Firebase have a great explanation
https://firebase.googleblog.com/2021/08/the-new-firebase-js-sdk-now-ga.html?m=1
Feature / Enhancement Description
This would allow to reduce the compiled client side app by eliminating the unused code.
This would also allow to fix #203 by allowing to create instances the Parse library for those who need to interact with multiple Servers.
Example Use Case
Alternatives / Workarounds
3rd Party References
https://www.codingame.com/playgrounds/7463/tree-shaking-in-javascript-with-rollup
The text was updated successfully, but these errors were encountered: