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