From 2496f9bef7892cb9bda8aa9c0139c01594aea0af Mon Sep 17 00:00:00 2001 From: brianinoa Date: Tue, 14 Jun 2022 16:44:04 +0200 Subject: [PATCH] :wrench: Enable ES Module Interop --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 6456490..48efe0b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,7 +18,8 @@ "declaration": true, "outDir": "./dist/", "target": "es2017", - "sourceMap": true + "sourceMap": true, + "esModuleInterop": true }, "include": [ "credentials/**/*", @@ -30,4 +31,4 @@ "exclude": [ "**/*.spec.ts" ] -} \ No newline at end of file +}