Angular 2 rc 6
, typescript 2
, node 4.5.0
, npm 2.15.9
on Windows 7
I\'m trying to move from Just-in-T
So is too, in Final release of Angular 2 whit Ionic2 RC1
A workaround for Fields could be to use getters without setters
protected _myField: any;
get myField(): any {
return this._myField;
}
You can also see other JiT to AoT considerations to adapt your code in this blog of Isaac Mann