To load a Polymer element in IE11, we should compile it to es5 syntax, and to use the same file in Chrome we need custom-elements-es5-adapter.js
.
custom-elements-es5-adapter.js
cannot be used on IE11 as it is supposed to be in es6 syntax.
Its kind of a deadlock situation where a single bundle js cannot be loaded on both Chrome and IE11.
Is there a way a Polymer element can be used on IE11 and Chrome?