From cda40f2a25afdf8c4fae57951aa53e13e44354c4 Mon Sep 17 00:00:00 2001 From: IEEE UCSD <33653707+ieeeucsd@users.noreply.github.com> Date: Fri, 3 Jun 2022 15:37:58 -0700 Subject: [PATCH] undo removing es module interop --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 5ae8c6a..42633fb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,8 @@ "noImplicitAny": true, "module": "commonjs", "target": "es6", - "jsx": "react" + "jsx": "react", + "esModuleInterop": true }, "include": ["./src"], "exclude": ["./src/public"]