From b57a2cd5868c00efaac568ee7c069b3f082e9cf6 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Sat, 25 Jan 2020 07:37:06 +0530 Subject: [PATCH] tsconfig - Allow allowSyntheticDefaultImports --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 83923ad..a82f99b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,7 +16,8 @@ "strictNullChecks": true, "suppressImplicitAnyIndexErrors": true, "noUnusedLocals": true, - "noUnusedParameters": true + "noUnusedParameters": true, + "allowSyntheticDefaultImports": true }, "include": ["src"], "exclude": ["node_modules", "build", "dist", "example", "rollup.config.js"]