From 51b185f5cccb00d5a5a617ed0c48b012d06ba990 Mon Sep 17 00:00:00 2001 From: kobenguyent Date: Mon, 8 Jun 2026 16:31:16 +0200 Subject: [PATCH] future proof ts6 --- tsconfig.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index c48091661..4cd70613f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,16 +3,17 @@ "files": true }, "compilerOptions": { - "target": "ES2022", - "lib": ["ES2022", "DOM"], + "target": "ES2025", + "lib": ["ES2025", "DOM"], "esModuleInterop": true, - "module": "Node16", - "moduleResolution": "Node16", + "module": "NodeNext", + "moduleResolution": "NodeNext", "types": ["node"], "declaration": true, "skipLibCheck": true, "allowJs": true, "checkJs": true, + "strict": false, "noImplicitAny": false, "noImplicitThis": false, "noEmit": true,