From bf15124d972b5825756e52c71e495a8b150b1a50 Mon Sep 17 00:00:00 2001 From: Rob Knight Date: Mon, 9 Sep 2024 22:10:27 +0300 Subject: [PATCH] Make web client use less restrictive tsconfig lint rules --- apps/client-web/tsconfig.app.json | 5 +---- apps/client-web/tsconfig.node.json | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/apps/client-web/tsconfig.app.json b/apps/client-web/tsconfig.app.json index f0a2350..abbd7b0 100644 --- a/apps/client-web/tsconfig.app.json +++ b/apps/client-web/tsconfig.app.json @@ -15,10 +15,7 @@ "jsx": "react-jsx", /* Linting */ - "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true + "strict": true }, "include": ["src"] } diff --git a/apps/client-web/tsconfig.node.json b/apps/client-web/tsconfig.node.json index 0d3d714..d851803 100644 --- a/apps/client-web/tsconfig.node.json +++ b/apps/client-web/tsconfig.node.json @@ -13,10 +13,7 @@ "noEmit": true, /* Linting */ - "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true + "strict": true }, "include": ["vite.config.ts"] }