我安装primeng并收到对等依赖警告:
>npm install primeng --save
npm WARN primeng@9.0.2 requires a peer of zone.js@^0.10.2 but none is installed. You must install peer dependencies yourself.
所以我尽职尽责地安装 zone.js@^0.10.2 ...
>npm install zone.js@^0.10.2 --save
npm WARN @angular/core@8.0.0 requires a peer of zone.js@~0.9.1 but none is installed. You must install peer dependencies yourself.
...现在它抱怨我需要安装 zone.js@~0.9.1。如果我安装它会抱怨 zone.js@^0.10.2 需要安装,依此类推......
该怎么办?谢谢