From 8ed2721ddda4c6830043e96a62d0c6cfd3b7cdaf Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Fri, 3 Jan 2025 00:27:13 +0200 Subject: [PATCH] Set server jsconfig target to ES2023 --- jsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsconfig.json b/jsconfig.json index 8cc31d841..02ce3a11c 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "module": "ESNext", - "target": "ESNext", + "target": "ES2023", "moduleResolution": "Node", "strictNullChecks": true, "strictFunctionTypes": true,