From 2c30da6a68e0b5d65d44afe2988b4566dc805d4f Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Mon, 22 Sep 2025 12:51:09 +0200 Subject: [PATCH] chore: define es and lib requirements --- tsconfig.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 653eac15..f3f15c96 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,13 @@ { "compilerOptions": { - "target": "esnext", + "target": "es2023", + "lib": [ + "ES2023", + "DOM", + "ES2024.Promise", + "ESNext.Iterator", + "ESNext.Collection" + ], "module": "nodenext", "moduleResolution": "nodenext", "outDir": "./build",