From 22c9bd4407cb76533290055a2969ba305075b143 Mon Sep 17 00:00:00 2001 From: Kleshzz Date: Sat, 9 May 2026 10:55:08 +0300 Subject: [PATCH] Update tsconfig to TS 6.0 --- tsconfig.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 5a5b361..5158e99 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,13 +3,14 @@ "noEmitOnError": false, "diagnostics": true, "lib": ["esnext"], - "target": "es2020", - + "rootDir": "src", "resolveJsonModule": true, "moduleResolution": "node", "module": "esnext", "esModuleInterop": true, + "types": ["node"], + "ignoreDeprecations": "6.0", "strict": true, "skipLibCheck": true, @@ -17,5 +18,6 @@ "noUnusedParameters": true, "noImplicitReturns": true }, + "include": ["src/**/*.ts"], "exclude": ["dist"] }