From b679e92a1051f57c1743b434b9e7b69e754305d5 Mon Sep 17 00:00:00 2001 From: Conicaw Date: Thu, 21 Dec 2023 16:55:03 -0600 Subject: [PATCH] build(ts): target esnext Target esnext commit-id:ad031ef3 --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 79079c1..d515684 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,10 +3,10 @@ "display": "Node 18 + Strictest", "compilerOptions": { "lib": [ - "es2022" + "esnext" ], "module": "commonjs", - "target": "es2022", + "target": "esnext", "strict": true, "esModuleInterop": true, "skipLibCheck": true,