You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Need to detect if an error is an instanceof FirebaseError
Describe the solution you'd like
Add error utils to module exports so can be used without the error below
Additional context
Currently when import { FirebaseError } from 'firebase-admin/lib/utils/error' get the following error Error: Package subpath './lib/utils/error' is not defined by "exports" in /Users/.../node_modules/firebase-admin/package.json
The text was updated successfully, but these errors were encountered:
The correct import should be import { FirebaseError } from 'firebase-admin';. Could you please check if that works for you? I think this is a duplicate of #1666. Let's close this and continue the discussion in #1666
Is your feature request related to a problem? Please describe.
Need to detect if an error is an
instanceof FirebaseError
Describe the solution you'd like
Add error utils to module exports so can be used without the error below
Additional context
Currently when
import { FirebaseError } from 'firebase-admin/lib/utils/error'
get the following errorError: Package subpath './lib/utils/error' is not defined by "exports" in /Users/.../node_modules/firebase-admin/package.json
The text was updated successfully, but these errors were encountered: