From 00d35e85fcffc9b092fe475ae215dea9f59703ac Mon Sep 17 00:00:00 2001 From: abhijithvijayan <34790378+abhijithvijayan@users.noreply.github.com> Date: Mon, 27 Jan 2020 20:16:19 +0530 Subject: [PATCH] fix: set allowSyntheticDefaultImports to true --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index cce4e5b..b2db90a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,6 +17,7 @@ "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ /* Additional Checks */ + "allowSyntheticDefaultImports": true, "noUnusedParameters": true, /* Report errors on unused parameters. */ "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ "useDefineForClassFields": true,