From 17e0eb46798eb89d0f06da09b987068ffd4a1b94 Mon Sep 17 00:00:00 2001 From: Choe JinHyeong Date: Mon, 20 Jan 2025 19:55:57 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=20fix=20:=20deploy=20error=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eslint.config.js | 2 ++ tsconfig.json | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index 91d3441..f262e2b 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -20,6 +20,8 @@ export default tseslint.config( rules: { ...reactHooks.configs.recommended.rules, 'react-refresh/only-export-components': ['warn', { allowConstantExport: true }], + 'react/jsx-uses-react': 'off', + 'react/react-in-jsx-scope': 'off', }, } ) diff --git a/tsconfig.json b/tsconfig.json index 1ffef60..4501939 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "files": [], - "references": [ - { "path": "./tsconfig.app.json" }, - { "path": "./tsconfig.node.json" } - ] + "references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }], + "compilerOptions": { + "jsx": "react-jsx" + } }