From 89b0876abcd46136097cdb60bb47ee3f83d5bcad Mon Sep 17 00:00:00 2001 From: Stevche Radevski Date: Wed, 29 May 2024 17:17:25 +0200 Subject: [PATCH] fix: Build auth-google as commonjs module (#7528) --- packages/modules/providers/auth-google/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/modules/providers/auth-google/tsconfig.json b/packages/modules/providers/auth-google/tsconfig.json index 9b6a615689..7afa70ffad 100644 --- a/packages/modules/providers/auth-google/tsconfig.json +++ b/packages/modules/providers/auth-google/tsconfig.json @@ -5,7 +5,7 @@ "outDir": "./dist", "esModuleInterop": true, "declaration": true, - "module": "ES2020", + "module": "commonjs", "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true,