From c7e3462c1350ad8b9200637f35bb43afad253cbb Mon Sep 17 00:00:00 2001 From: Bryan Mishkin <698306+bmish@users.noreply.github.com> Date: Thu, 5 Dec 2024 15:55:41 -0500 Subject: [PATCH] Use ES2023 target for TypeScript (#712) --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 892596a..a113395 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,9 +7,9 @@ "declaration": true, "experimentalDecorators": true, "lib": [ - "es2021" + "es2023" ], - "module": "ES2020", + "module": "ES2022", "moduleResolution": "node", "noEmitOnError": true, "noFallthroughCasesInSwitch": true, @@ -17,7 +17,7 @@ "noUnusedLocals": true, "noUnusedParameters": true, "outDir": "dist", - "target": "es2021", + "target": "es2023", "types": [ "node", "@types/jest"