From da0ce0c44760fc0b3cd25ce56c98bac19cdba8a2 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Wed, 25 Mar 2026 22:59:55 -0700 Subject: [PATCH] Remove deprecated properties and specify types as now required by ts6. --- tsconfig.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 10c210a..38369a7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,9 +4,7 @@ "checkJs": true, "declaration": true, "declarationDir": "./types", - "downlevelIteration": false, "emitDeclarationOnly": true, - "esModuleInterop": false, "forceConsistentCasingInFileNames": true, "isolatedModules": true, "module": "es2022", @@ -19,6 +17,12 @@ "lib": [ "DOM", "ES2024" + ], + "types": [ + "node", + "w3c-web-hid", + "w3c-web-usb", + "web-bluetooth" ] }, "include": [ -- 2.47.3