【TypeScript】Accessors are only available when targeting ECMAScript 5 and higherエラー
TypeScript勉強中でクラスを定義し、Getter,Setterを用意してコンパイルしたら以下のエラーが発生しました。 test5.ts:3:9 - error TS1056: Accessors are only available when targeting ECMAScript 5 and higher. 3 get age(): number { ~~~ test5.ts:6:...