From df84ec94613786aa69511a36bc60ff6ab02df4af Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 5 Apr 2022 15:01:16 -0500 Subject: [PATCH] tsconfig: enable esModuleInterop --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index beff5f647..81de33908 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,7 @@ "moduleResolution": "node", "resolveJsonModule": true, "experimentalDecorators": true, - "allowSyntheticDefaultImports": true, + "esModuleInterop": true, "typeRoots": [ "./types", "./node_modules/@types"] }, "exclude": ["node_modules", "types", "**/*.test.*", "**/__mocks__/*", "**/__tests__/*"]