-
Notifications
You must be signed in to change notification settings - Fork 955
Closed
Description
Describe your environment
- Operating System: Windows 10
- Firebase SDK version: 9.1.3
- IDE: Webstorm and VSCode
Describe the problem
Not sure if this is entirely related to Firebase itself.
With v9, no intellisense is provided for the firebase module. If I write out the import paths manually it does work, but no suggestions are given when writing out function names.
I think it might be happening due to the firebase/*
paths being re-exports of the @firebase/*
paths making the IDE not index the modules correctly, however I haven't been able to find any workarounds for this yet.
Steps to reproduce:
- Create a new project with firebase.
- Start writing our
initializeApp
or some other exported function. - Intellisense either comes up with nothing or suggests the equivalent function in the compat section.
emiliemarchand