From bd9442169d236430025d04867069e4658a263a75 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 5 Apr 2023 03:22:36 +0200 Subject: [PATCH] properly resolve all paths --- backend/.eslintrc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/.eslintrc.js b/backend/.eslintrc.js index 4aa367a85..d20120a25 100644 --- a/backend/.eslintrc.js +++ b/backend/.eslintrc.js @@ -160,8 +160,8 @@ module.exports = { 'import/unambiguous': 'off', }, parserOptions: { - tsconfigRootDir: './', - project: ['./tsconfig.json'], + tsconfigRootDir: '**/', + project: ['**/tsconfig.json'], // this is to properly reference the referenced project database without requirement of compiling it EXPERIMENTAL_useSourceOfProjectReferenceRedirect: true, },