Accessors are only available when targeting ECMAScript 5 and higher

前端 未结 14 1683
北荒
北荒 2020-12-23 13:07

I am trying to run this code but it is giving me following errors:

Animal.ts(10,13): error TS1056: Accessors are only available when targeting ECMAS

14条回答
  •  清歌不尽
    2020-12-23 13:57

    Here you need to pass the switch to type script compiler, so it target ECMAScript file. To do that enter below code in the terminal

    tsc (your ts file).ts --target ES5 and run your bulid js file

    node (your js file)

提交回复
热议问题