This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Description
Currently library includes polyfill for built-ins like Promise, Symbol or Object.assign.
But according to the Vue CLI docs:
When using Vue CLI to build a library or Web Components, it is recommended to pass useBuiltIns: false to @vue/babel-preset-app to disable automatic polyfill injection. This ensures you don't include unnecessary polyfills in your code, as it should be the responsibility of the consuming app to include polyfills.
We can cut up to 50% of the library by removing those polyfills
TODO: