From 51924169d752278bc1582ebfb72343dbc7d8187e Mon Sep 17 00:00:00 2001 From: Chris Curnow Date: Wed, 18 Mar 2026 17:39:18 +1100 Subject: [PATCH] Update package.json Add "type": "module" to /auth/package.json to fix https://github.com/FirebaseExtended/rxfire/issues/129 --- auth/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/auth/package.json b/auth/package.json index 6835659..9535bf4 100644 --- a/auth/package.json +++ b/auth/package.json @@ -4,5 +4,6 @@ "main": "../dist/auth/index.cjs.js", "module": "../dist/auth/index.esm.js", "typings": "../dist/auth/index.d.ts", - "sideEffects": false + "sideEffects": false, + "type": "module" }