From 3dc878b59a79ce762116484ee3c54dd029926f10 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sun, 26 Feb 2023 13:19:21 +0100 Subject: [PATCH] fix lint with uncompiled database --- backend/.eslintrc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/.eslintrc.js b/backend/.eslintrc.js index 9c1097f53..416a5b96f 100644 --- a/backend/.eslintrc.js +++ b/backend/.eslintrc.js @@ -35,6 +35,8 @@ module.exports = { parserOptions: { tsconfigRootDir: __dirname, project: ['./tsconfig.json'], + // this is to properly reference the referenced project database without requirement of compiling it + EXPERIMENTAL_useSourceOfProjectReferenceRedirect: true, }, }, ],