From db31036f1c966abfe485d78fb32b672b54fe64ae Mon Sep 17 00:00:00 2001 From: Santeri Hiltunen Date: Sun, 23 Nov 2025 21:31:57 +0200 Subject: [PATCH] Update tsconfig for Node 24 supported target and libs --- template/tsconfig.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/template/tsconfig.json b/template/tsconfig.json index 8656102..0cab654 100644 --- a/template/tsconfig.json +++ b/template/tsconfig.json @@ -1,8 +1,14 @@ { // Visit https://aka.ms/tsconfig to read more about this file "compilerOptions": { - "target": "es2022", - "lib": ["es2024", "ESNext.Array", "ESNext.Collection", "ESNext.Iterator"], + "target": "es2024", + "lib": [ + "es2024", + "ESNext.Array", + "ESNext.Collection", + "ESNext.Iterator", + "ESNext.Promise" + ], // Output options "noEmit": true,