I found this great article I had been using with Polymer 0.5 ( http://www.mikecann.co.uk/programming/tinkering-with-google-polymer-and-typescript/ ) for being able to use Typesc
You can try this:
class CreatorStudio extends Polymer.Class(
{
is: "creator-studio",
properties: {}
}
){
ready() {
// ...
}
created(){
// ...
}
and later:
document.registerElement(CreatorStudio.prototype.is, CreatorStudio);
Here's a working sample (although using Babel, not Typescript): http://codepen.io/mikkokam/pen/jPMLJN
you can use the package PolymerTS