1

我使用的是赛普拉斯 3.3.1 版。我收到以下错误:

错误:“TS1219:对装饰器的实验性支持是一项可能会在未来版本中更改的功能。设置“experimentalDecorators”选项以删除此警告。”

PS:我已经设置好"experimentalDecorators": truetsconfig.json。尝试了以下但没有奏效:https ://github.com/cypress-io/eslint-plugin-dev/issues/4

报告错误的代码:

@observable public someVar: dataType;
4

1 回答 1

1

我在tsconfig.jsontest 目录下创建了 ,即my_project/__tests__/integration/tsconfig.json并将其设置experimentalDecoratorstrue.

{
  "compilerOptions": {
    "experimentalDecorators": true
  }
}
于 2019-07-03T16:17:43.137 回答