From e915f219cde5163960303a500690761e46753536 Mon Sep 17 00:00:00 2001 From: Arya Emami Date: Tue, 16 Jul 2024 18:13:11 -0500 Subject: [PATCH] Fix bug related to `verbatimModuleSyntax` - With `verbatimModuleSyntax` enabled, we receive `Cannot find module '@swc/core'` error. --- tsconfig.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 6059c7c4..df1a32d9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -63,8 +63,6 @@ // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ /* Advanced Options */ - "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */, - - "verbatimModuleSyntax": true + "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ } }