From d4bdaaee1ca463be402e374f8c066495f06d304a Mon Sep 17 00:00:00 2001 From: yawn <69970183+yawn-c111@users.noreply.github.com> Date: Mon, 25 Nov 2024 15:57:28 +0900 Subject: [PATCH] fix: specify TypeScript project path in ESLint configuration --- pkgs/frontend/.eslintrc.cjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/frontend/.eslintrc.cjs b/pkgs/frontend/.eslintrc.cjs index 4f6f59e..de46fbf 100644 --- a/pkgs/frontend/.eslintrc.cjs +++ b/pkgs/frontend/.eslintrc.cjs @@ -45,7 +45,9 @@ module.exports = { { name: "NavLink", linkAttribute: "to" }, ], "import/resolver": { - typescript: {}, + typescript: { + project: "pkgs/frontend/tsconfig.json", + }, }, }, },