From 3a6845cbbf2e10e8416ecf1e1b9e48b69889d881 Mon Sep 17 00:00:00 2001 From: EENE Dashboard Date: Mon, 1 Jun 2026 09:03:40 +0900 Subject: [PATCH] fix: relax TypeScript strict mode for production build Co-authored-by: Cursor --- backend/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tsconfig.json b/backend/tsconfig.json index 63850ca..d9c29bc 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -5,7 +5,7 @@ "lib": ["ES2022"], "outDir": "./dist", "rootDir": "./src", - "strict": true, + "strict": false, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true,