英文:
Angular Compilation Error: Deprecation warning
问题
自从升级到Angular 13以后,我开始收到这个弃用警告。
TypeError: message.trim is not a function
at Function.Rule.FAILURE_STRING (/home/app/node_modules/tslint/lib/rules/deprecationRule.js:30:81)
at cb (/home/app/node_modules/tslint/lib/rules/deprecationRule.js:57:53)
应用程序仍然正常运行,但每次构建应用程序时都会出现此错误。
即使在Angular 14中,仍然存在此警告。
英文:
I have started getting this deprecation warning ever since upgraded to Angular 13.
TypeError: message.trim is not a function
at Function.Rule.FAILURE_STRING (/home/app/node_modules/tslint/lib/rules/deprecationRule.js:30:81)
at cb (/home/app/node_modules/tslint/lib/rules/deprecationRule.js:57:53)
App works fine but it spits this error every time building the app.
This warning is present even with Angular 14.
答案1
得分: 1
尝试更新到最新版本的 tslint
npm install tslint@latest
英文:
Try updating to the latest version of tslint
npm install tslint@latest
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论