From 2baf56819a5f9af0b0d18a67b95ae59f857008a0 Mon Sep 17 00:00:00 2001 From: Andrei Gaspar Date: Mon, 1 Dec 2025 20:46:04 +0100 Subject: [PATCH] fix: Eslint config path issue --- frontend/app/.eslintrc.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/app/.eslintrc.json b/frontend/app/.eslintrc.json index 22fa83cb8..08a7844d3 100644 --- a/frontend/app/.eslintrc.json +++ b/frontend/app/.eslintrc.json @@ -16,7 +16,11 @@ "ignorePatterns": ["dist"], "parser": "@typescript-eslint/parser", "parserOptions": { - "project": ["./tsconfig.json", "./tsconfig.node.json"], + "project": [ + "./frontend/app/tsconfig.json", + "./frontend/app/tsconfig.node.json" + ], + "tsconfigRootDir": ".", "warnOnUnsupportedTypeScriptVersion": false }, "plugins": ["react-refresh", "import", "unused-imports", "prettier"],