In my Asp.Net MVC web page I'm using X-Editable jQuery plugin. And I have a custom complex form which extends abstractinput.
In a plain javascript it's declaration looks like the following
$.fn.editableutils.inherit(MyCustomForm, $.fn.editabletypes.abstractinput);
but I need to have it in Typescript (v0.9.5) class and I'm doing it in a naive way like this
export class MyCustomForm extends $.fn.editabletypes.abstractinput { ... }
And it is working, at least it compiles and converts to javascript, but with errors. It's OK for development (debug) to skip these errors, but when I'm publishing the project all those errors are breaking publishing process.
How to extend such structure properly?