fix: Eslint config path issue

This commit is contained in:
Andrei Gaspar
2025-12-01 20:46:04 +01:00
parent 1de244ada2
commit 2baf56819a

View File

@@ -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"],