You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 1, 2020. It is now read-only.
ionic-app-scripts currently use uglify-js to minify Ionic apps. Uglify-js supports only es5 so the typescript compiler must target es5 which leads to more generated code. Using uglify-es would allow to target es6 in tsconfig, so typescript just could leave es6 code untouched instead of compiling it down to es5. This would lead to smaller bundles which would lead to faster startup time.