From 12fa1db78dc87cafb539326f0a3ca0b2d3b1dd13 Mon Sep 17 00:00:00 2001 From: Divya Jain Date: Mon, 17 Jun 2024 02:00:27 +0530 Subject: [PATCH] :wrench: fix deprecated typescript configs --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 93b9213..be6c34a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,8 @@ "isolatedModules": true, "noEmit": true, "strict": true, - "importsNotUsedAsValues": "error", + "verbatimModuleSyntax": true, + "allowSyntheticDefaultImports": true, "baseUrl": ".", "paths": { "@components/*": ["src/components/*"],