From 410e0b35b8208a0e0307f481b14df1f25b141aa4 Mon Sep 17 00:00:00 2001 From: Jade Laurence Empleo <140808788+syntaxsurge@users.noreply.github.com> Date: Fri, 16 May 2025 00:35:36 +0800 Subject: [PATCH] =?UTF-8?q?fix(tsconfig):=20target=20ES2017=20to=20resolve?= =?UTF-8?q?=20TS2550=20=E2=80=9CArray.includes=E2=80=9D=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 335a5cc..78d97b9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "ES5", + "target": "ES2017", "module": "ESNext", "moduleResolution": "node", // Use "node" resolution for modules "strict": true,