From 6108d917e6d4a537dd470fdec08d08cd3bf0b1c5 Mon Sep 17 00:00:00 2001 From: Hiroki Terashima Date: Tue, 26 Nov 2024 11:43:18 -0800 Subject: [PATCH] build(tsconfig): update module and target to ESNext and ES2023 (#2007) --- tsconfig.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 50f1eca0a49..526168cc292 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,18 +6,18 @@ "declaration": false, "esModuleInterop": true, "moduleResolution": "node", - "module": "es2022", + "module": "ESNext", "emitDecoratorMetadata": true, "experimentalDecorators": true, - "target": "ES2022", + "target": "ES2023", "resolveJsonModule": true, "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2022", + "ES2023", "dom" ], "useDefineForClassFields": false } -} +} \ No newline at end of file