From 7401791ec8ab64c3d47561022fb63d2ee041e6de Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Mon, 31 Jul 2023 20:50:05 +0200 Subject: [PATCH] fix(backend): allowjs in tsconfig.json Prevents a warning in the backend unit tests about allowing JS code. Signed-off-by: Tilman Vatteroth --- backend/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/tsconfig.json b/backend/tsconfig.json index e296a09e2..172dcc48c 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -16,6 +16,7 @@ "strictPropertyInitialization": false, "resolveJsonModule": true, "useDefineForClassFields": false, - "preserveWatchOutput": true + "preserveWatchOutput": true, + "allowJs": true } }