From 2f3b739f9e21d85a3781e26e1b28323b7976da45 Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Thu, 4 Jan 2024 16:34:21 +0100 Subject: [PATCH] chore: Allow JS files for the backend package --- packages/backend/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/backend/tsconfig.json b/packages/backend/tsconfig.json index 0b471c36..a4370290 100644 --- a/packages/backend/tsconfig.json +++ b/packages/backend/tsconfig.json @@ -2,11 +2,12 @@ "compilerOptions": { "baseUrl": ".", "declaration": true, + "allowJs": true, "esModuleInterop": true, "lib": ["es2021"], "module": "commonjs", "moduleResolution": "node", - "noImplicitAny": true, + "noImplicitAny": false, "outDir": "dist", "paths": { "*": ["../../node_modules/*", "node_modules/*", "src/types/*"]