From 0b9bdf819e09f241938b8dfe362f26f0d787712d Mon Sep 17 00:00:00 2001 From: creations Date: Mon, 2 Jun 2025 20:35:55 -0400 Subject: [PATCH] fix lint --- tsconfig.json | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 1e03dcd..3183de4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,14 +7,8 @@ "@types/*": ["types/*"], "@helpers/*": ["src/helpers/*"] }, - "typeRoots": [ - "./types", - "./node_modules/@types" - ], - "lib": [ - "ESNext", - "DOM" - ], + "typeRoots": ["./types", "./node_modules/@types"], + "lib": ["ESNext", "DOM"], "target": "ESNext", "module": "ESNext", "moduleDetection": "force", @@ -32,8 +26,5 @@ "noUncheckedIndexedAccess": true, "noPropertyAccessFromIndexSignature": false }, - "include": [ - "src", - "types" - ] + "include": ["src", "types"] }