From 87b4ba3801b76a24531d1af148bcbdfebafd4be0 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 11 Sep 2024 11:54:37 +0200 Subject: [PATCH] fix: only typecheck our code (it helps avoiding issues with typescript version and libs) --- server/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/server/tsconfig.json b/server/tsconfig.json index f4fb6794..d6c972b7 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -14,6 +14,7 @@ //"noImplicitAny": false, "strictNullChecks": false, //"strictPropertyInitialization": true, "useUnknownInCatchVariables": false, + "skipLibCheck": true, "types" : [ "body-parser", "express", "lodash", "mocha", "mongodb", "morgan", "node", "nodemailer", "xml2js"