From 15fa41c5e3cb73c1abf8499f397bc8eb80fb0393 Mon Sep 17 00:00:00 2001 From: Nymbo <129332110+Nymbo@users.noreply.github.com> Date: Tue, 12 May 2026 16:46:32 -0400 Subject: [PATCH] Modernize TypeScript config --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 222535d..78d96da 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "baseUrl": "src", + "strict": true, "inlineSourceMap": true, "inlineSources": true, "module": "ESNext", @@ -9,10 +9,11 @@ "noImplicitAny": true, "noImplicitThis": true, "noImplicitReturns": true, - "moduleResolution": "node", + "moduleResolution": "bundler", "importHelpers": true, "noUncheckedIndexedAccess": true, "isolatedModules": true, + "forceConsistentCasingInFileNames": true, "strictNullChecks": true, "strictBindCallApply": true, "allowSyntheticDefaultImports": true,