From 8869c8ccde5cacafdd685089c6f0d462d42d370e Mon Sep 17 00:00:00 2001 From: dmson1218 Date: Wed, 29 Nov 2023 16:57:16 +0900 Subject: [PATCH] =?UTF-8?q?hotfix:=20eslint=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 경로 설정 수정 --- FE/.eslintrc.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/FE/.eslintrc.js b/FE/.eslintrc.js index 1ff8ac8..327c6cb 100644 --- a/FE/.eslintrc.js +++ b/FE/.eslintrc.js @@ -27,4 +27,11 @@ module.exports = { "react/jsx-filename-extension": [1, { extensions: [".js", ".jsx"] }], "react/prop-types": "off", }, + settings: { + "import/resolver": { + node: { + paths: ["src"], + }, + }, + }, };