From 7388c7634d2b9ec2b51529bc1a607362e779e53e Mon Sep 17 00:00:00 2001 From: ras0q Date: Mon, 22 May 2023 08:04:25 +0900 Subject: [PATCH] replace importsNotUsedAsValues with verbatimModuleSyntax ref: https://github.com/microsoft/TypeScript/pull/52203 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index ccda20d00..b78ef1fef 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,7 +14,7 @@ "noFallthroughCasesInSwitch": true, "noPropertyAccessFromIndexSignature": true, "noUncheckedIndexedAccess": true, - "importsNotUsedAsValues": "error", + "verbatimModuleSyntax": true, "sourceMap": true, "noEmit": true, "baseUrl": ".",