From 8dbfe01117619528ececeab548c9aea7ca68de3f Mon Sep 17 00:00:00 2001 From: development Date: Fri, 16 Jan 2026 13:25:58 +0000 Subject: [PATCH] Update tsconfig.json --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 4db7363..9e275b2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,11 +3,15 @@ "target": "ES2020", "useDefineForClassFields": true, "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, + + /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, - "jsx": "react-jsx", "strict": true, + "jsx": "react-jsx", + /* Linting */ + "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true