From 860d940231420937d9065f463c1db9120734e35c Mon Sep 17 00:00:00 2001 From: Justin Halsall Date: Thu, 14 Dec 2023 16:07:15 +0100 Subject: [PATCH] Add esModuleInterop and allowSyntheticDefaultImports to tsconfig.json --- packages/rrdom/tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/rrdom/tsconfig.json b/packages/rrdom/tsconfig.json index 867cfe4497..4f95e4e374 100644 --- a/packages/rrdom/tsconfig.json +++ b/packages/rrdom/tsconfig.json @@ -8,6 +8,8 @@ "strictNullChecks": true, "removeComments": true, "preserveConstEnums": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, "sourceMap": true, "rootDir": "src", "outDir": "build",