From eeb490f4406ad65dc1f9ad2c2d3ce0dd6ab8a361 Mon Sep 17 00:00:00 2001 From: Mark Napthine Date: Fri, 19 May 2023 22:17:57 +0100 Subject: [PATCH] fix: replace deprecated entry in tsconfig 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 1380fa0b..fb0a8062 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -45,7 +45,7 @@ "noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */, "noUncheckedIndexedAccess": true /* Include 'undefined' in index signature results */, // "noPropertyAccessFromIndexSignature": true, /* Require undeclared properties from index signatures to use element accesses. */ - // "importsNotUsedAsValues": "error", + "verbatimModuleSyntax": true, /* Module Resolution Options */ "moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,