I am facing an issue while attempting to establish a connection between my app and a firebase database. The problem arises as I receive 4 error messages in the app.module.ts file:
'"@angular/fire"' has no exported member 'AngularFireModule'.ts(2305),
'"@angular/fire/storage"' has no exported member 'AngularFireStorageModule'.ts(2305)
'"@angular/fire/database"' has no exported member 'AngularFireDatabaseModule'.ts(2305)
'"@angular/fire/auth"' has no exported member 'AngularFireAuthModule'.ts(2305)
Below is the content of my package.json file:
{
"name": "gescable",
"version": "0.0.1",
...
}
Furthermore, the problematic sections within my app.module.ts can be seen below:
import { NgModule } from '@angular/core';
...
export class AppModule {}
To complete the overview, here is the configuration snippet from my tsconfig.ts file:
{
"compileOnSave": false,
"compilerOptions": {
...
},
...
}