From dc7e763d99e1ab802ec97d749d8c592b5ce6e164 Mon Sep 17 00:00:00 2001 From: Orion Reed Date: Sat, 7 Dec 2024 17:46:30 -0500 Subject: [PATCH] keep unused locals as a warning for now so it builds --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index eef571a..85a65a2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,7 @@ "allowImportingTsExtensions": true, "useDefineForClassFields": true, "skipLibCheck": true, - "noUnusedLocals": true, + "noUnusedLocals": false, "lib": ["DOM", "DOM.Iterable", "ESNext", "WebWorker"], "types": ["@webgpu/types", "@types/node", "bun-types"] },