I am using Webpack with firebase and firebase-admin.
To install firebase I ran
npm install --save firebase
I am importing firebase
You just need to use the import as following
import firebase from "firebase/app"; import "firebase/firestore"; import "firebase/auth";
in the above case, both auth and DB services are being used. For any other service, you need to import like that only.