From dfccc97983a73f9d40a82866cf6f4d41a3ec3e42 Mon Sep 17 00:00:00 2001 From: Bervianto Leo Pratama Date: Wed, 27 Sep 2023 21:51:37 +0700 Subject: [PATCH] fix: update wrong path Signed-off-by: Bervianto Leo Pratama --- tsconfig.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index aca7a9c20..32b0a1a07 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,6 +16,11 @@ "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ /* Advanced Options */ "skipLibCheck": true, /* Skip type checking of declaration files. */ - "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ + "forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */ + "paths": { + "react": [ + "./node_modules/@types/react" + ] + } }, }