> Is Node 15 more strict about dependencies? Any ideas how to fix things for Node.js 15 users?
Hello.
NPM 7 is.
It installs peer dependencies and check peer dependencies conflicts.
There will be a transition where a lot of packages will have peer dependencies conflicts.
Example @angular/core has a peer dependencies on zone.js ^0.10.3, so it conflicts with zone.js 0.11.2.
I downgraded zone.js to 0.10.3 otherwise angular would be not installable in npm 7.
Currently Vue and React generated projects are not installable on npm 7.
Regards.