To prevent conflicts and warning during compile time, please bump the package dependency
From the command npm list @google-cloud/firestore when starting a fresh firebase node project, it is clear what needs to be bumped
functions@ /__________
├── @google-cloud/firestore@7.8.0
├─┬ firebase-admin@12.1.1
│ └── @google-cloud/firestore@7.8.0 deduped
└─┬ firestore-storage@7.0.2
└── @google-cloud/firestore@6.8.0
A quick fix in the meantime would be to add an override to the firebase package.json
"overrides": {
"firestore-storage": {
"@google-cloud/firestore": "7.8.0"
}
},
To prevent conflicts and warning during compile time, please bump the package dependency
From the command
npm list @google-cloud/firestorewhen starting a fresh firebase node project, it is clear what needs to be bumpedA quick fix in the meantime would be to add an override to the firebase package.json