From c845b284b181eccee8ff3bd1c57cc996f6b04625 Mon Sep 17 00:00:00 2001 From: KhoonSun47 Date: Fri, 15 Nov 2024 19:08:26 +0800 Subject: [PATCH] Proposed Change for tsconfig.json --- services/collaboration/src/tsconfig.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/services/collaboration/src/tsconfig.json b/services/collaboration/src/tsconfig.json index e11699008c..6cf9d7cbaf 100644 --- a/services/collaboration/src/tsconfig.json +++ b/services/collaboration/src/tsconfig.json @@ -8,7 +8,8 @@ "strict": true, "esModuleInterop": true, "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, + "forceConsistentCasingInFileNames": true, + "allowJs": true // <-- Add this line }, - "include": ["**/*.ts"] -} + "include": ["**/*.ts", "**/*.js"] // <-- Edit this line +} \ No newline at end of file