From 2cedd68e6949b9be72e55065e9a1cc6525478b34 Mon Sep 17 00:00:00 2001 From: Tom French Date: Wed, 24 Aug 2022 21:09:45 +0100 Subject: [PATCH] fix: add esModuleInterop so that the default imports issue goes away --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index ff28c58..3e88e7d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "target": "ES2022", "lib": ["ES2021", "DOM"], "allowSyntheticDefaultImports": true, + "esModuleInterop": true, "experimentalDecorators": true, "resolveJsonModule": true, "downlevelIteration": true,