搜尋

首頁  >  問答  >  主體

html5 - Angular2 提示TS1219:對裝飾器的實驗支援;

1、使用angular2,使用TypeScript語言開發;
2、編譯出錯:TS1219:Experimental support for decorators is a feature that is subject to change in a future release.
3、貼圖:

4、而且在我別的專案裡有一套相似的程式碼,不會編譯報錯,我目前找不到差別,有人遇到過類似的問題嗎?

PHP中文网PHP中文网2738 天前774

全部回覆(1)我來回復

  • 阿神

    阿神2017-05-31 10:41:51

    tsconfig.json設定檔中加入下方設定:

    {
        "compilerOptions": {
            "experimentalDecorators": true
        }
    }

    回覆
    0
  • 取消回覆