From cefd792b03df569fdbea087a3a871f2f952fe26f Mon Sep 17 00:00:00 2001 From: Kirill Gavrilov Date: Sun, 3 May 2026 15:47:35 +0300 Subject: [PATCH] chore: use lowercase values from tsconfig docs --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e6e6d17..a2eacad 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,9 @@ { "compilerOptions": { - "module": "ESNext", + "module": "esnext", "moduleResolution": "bundler", "rootDir": ".", - "target": "ES6", + "target": "es6", "noImplicitAny": true, "isolatedModules": true, "strict": true,