1、使用angular2,使用TypeScript語言開發;
2、編譯出錯:TS1219:Experimental support for decorators is a feature that is subject to change in a future release.
3、貼圖:
4、而且在我別的專案裡有一套相似的程式碼,不會編譯報錯,我目前找不到差別,有人遇到過類似的問題嗎?
阿神2017-05-31 10:41:51
在tsconfig.json
設定檔中加入下方設定:
{
"compilerOptions": {
"experimentalDecorators": true
}
}