therour

Results 2 comments of therour

I found workaround based on [npm docs](https://docs.npmjs.com/cli/v7/commands/npm-install#configuration-options-affecting-dependency-resolution-and-tree-design) we can ignore the peer dependency by adding `--legacy-peer-deps` so we can install bookshelf with ```bash npm i bookshelf --legacy-peer-deps ``` or ```bash...

@itsrennyman based on [issue in objection.js](https://github.com/Vincit/objection.js/issues/2012#issuecomment-833267598) mostly the incompatibility is about typings... so the workaround wont have any effect on functionality but will be problem on typings is that right?...