Search code examples
polymerweb-componentcustom-element

Failed to construct 'HTMLElement'


I run my-widget.js through babel (es2015 preset) to produce my-widget-es5.js. This causes an error with Polymer.

Class constructor PolymerElement cannot be invoked without 'new'
    at new MyWidget (my-widget.js:##)
    at mw-widget.js [sm]:##

file structure

out
 |
 -- my-widget-es5.js
js
 |
 -- my-widget.js
html
 |
 -- my-widget.html

my-widget.html

<dom-module id="my-widget">
    <template>
        <script src="/out/my-widget-es5.js"></script>
    </template>
</dom-module>

my-widget.js

class MyWidget extends Polymer.Element {
    static get is() {
        return 'my-widget';
    }
}

customElements.define(MyWidget.is, MyWidget);

Solution

  • According to SO user @joncarlson:

    You may find a solution by using the custom-elements-es5-adapter.js file proposed as a workaround by Webcomponentsjs.