From 303c2132a194c2e8c54fa0e2f09a4b28a57ef4b9 Mon Sep 17 00:00:00 2001 From: Niki Wix Skaarup Date: Sun, 6 Apr 2025 00:12:17 +0200 Subject: [PATCH] ts... --- tsconfig.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 9c62f74..0abd418 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,25 +1,25 @@ { "compilerOptions": { // Environment setup & latest features - "lib": ["ESNext"], + "lib": [ + "ESNext", + "DOM", + ], "target": "ESNext", "module": "ESNext", "moduleDetection": "force", "jsx": "react-jsx", "allowJs": true, - // Bundler mode "moduleResolution": "bundler", "allowImportingTsExtensions": true, "verbatimModuleSyntax": true, "noEmit": true, - // Best practices "strict": true, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true, - // Some stricter flags (disabled by default) "noUnusedLocals": false, "noUnusedParameters": false,