First time using firestore and I\'m getting this error. It seems to be a problem with Ivy, from my research. I don\'t have a lot of experience modifying tsconfig.app.json, w
I was adding service to module i.e. app.module.ts. I added it into imports array instead of providers array.
service
app.module.ts
imports
providers
@NgModule({ imports: [ MyService // wrong here ], providers: [ MyService // should add here ] }) export class AppModule { }