From 25019e9bff80cf93d6f94a94f5afa5b6a0750b10 Mon Sep 17 00:00:00 2001 From: sinedied Date: Thu, 28 Mar 2024 17:03:21 +0100 Subject: [PATCH] chore: enable ts strict mode --- packages/api/tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/api/tsconfig.json b/packages/api/tsconfig.json index fd678dc..450b0a3 100644 --- a/packages/api/tsconfig.json +++ b/packages/api/tsconfig.json @@ -9,10 +9,9 @@ "outDir": "dist", "rootDir": ".", "sourceMap": true, - "strict": false, + "strict": true, "moduleResolution": "node", "esModuleInterop": true, - "strictNullChecks": true, "lib": ["ESNext", "DOM"] } }