在我将我的Angular应用程序升级到v15后,一些警告开始显示在终端和chrome devtool中。有没有办法让我禁用这些警告?
The left side of this optional chain operation does not include 'null' or 'undefined' in its type, therefore the '?.' operator can be replaced with the '.'
operator.ngtsc(-998107)
在我将我的Angular应用程序升级到v15后,一些警告开始显示在终端和chrome devtool中。有没有办法让我禁用这些警告?
The left side of this optional chain operation does not include 'null' or 'undefined' in its type, therefore the '?.' operator can be replaced with the '.'
operator.ngtsc(-998107)
1条答案
按热度按时间sqxo8psd1#
您可以通过在tsconfig.json中添加其他配置来禁用它:
或者
您可以通过安装tsc-silent来禁用它,tsc-silent是一个覆盖tsconfig.json并添加其他设置的包。请执行以下操作:
有关详细信息,请查看文档:https://github.com/evolution-gaming/tsc-silent