From 5c675f80d4c505f24868201d215829c3b4dab002 Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Wed, 8 Feb 2023 18:52:39 +0000 Subject: [PATCH] Adding esModuleInterop to TS-config stub generation in string-templates. --- packages/string-templates/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/string-templates/tsconfig.json b/packages/string-templates/tsconfig.json index 40814d1ba1..87b4dece71 100644 --- a/packages/string-templates/tsconfig.json +++ b/packages/string-templates/tsconfig.json @@ -5,6 +5,7 @@ "allowJs": true, "declaration": true, "emitDeclarationOnly": true, - "outDir": "dist" + "outDir": "dist", + "esModuleInterop": true } }