From b48aa917281c7c23f92c490b751f2b68f387277d Mon Sep 17 00:00:00 2001
From: Emile Bangma <github@emilebangma.com>
Date: Mon, 02 Jun 2025 16:36:57 +0000
Subject: [PATCH] fix(flex): respect DesktopOnly and MobileOnly components (#1971)

---
 tsconfig.json |   18 +++++-------------
 1 files changed, 5 insertions(+), 13 deletions(-)

diff --git a/tsconfig.json b/tsconfig.json
index ea8fd50..637d096 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,10 +1,6 @@
 {
   "compilerOptions": {
-    "lib": [
-      "esnext",
-      "DOM",
-      "DOM.Iterable"
-    ],
+    "lib": ["esnext", "DOM", "DOM.Iterable"],
     "experimentalDecorators": true,
     "module": "esnext",
     "target": "esnext",
@@ -15,16 +11,12 @@
     "skipLibCheck": true,
     "allowSyntheticDefaultImports": true,
     "forceConsistentCasingInFileNames": true,
+    "noUnusedLocals": true,
+    "noUnusedParameters": true,
     "esModuleInterop": true,
     "jsx": "react-jsx",
     "jsxImportSource": "preact"
   },
-  "include": [
-    "**/*.ts",
-    "**/*.tsx",
-    "./package.json"
-  ],
-  "exclude": [
-    "build/**/*.d.ts"
-  ]
+  "include": ["**/*.ts", "**/*.tsx", "./package.json"],
+  "exclude": ["build/**/*.d.ts"]
 }

--
Gitblit v1.10.0