fix(backend): allowjs in tsconfig.json

Prevents a warning in the backend unit tests about allowing JS code.

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-07-31 20:50:05 +02:00
parent bc19fccff2
commit 7401791ec8

View file

@ -16,6 +16,7 @@
"strictPropertyInitialization": false,
"resolveJsonModule": true,
"useDefineForClassFields": false,
"preserveWatchOutput": true
"preserveWatchOutput": true,
"allowJs": true
}
}