From 20b907d676dcd881fc5908bea979029c2e3d8ed7 Mon Sep 17 00:00:00 2001 From: tycrek Date: Tue, 29 Nov 2022 21:49:58 -0700 Subject: [PATCH] build: target ES2022 --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 5cec8f8..6b63df6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,9 +2,9 @@ "extends": "@tsconfig/node16/tsconfig.json", "compilerOptions": { "outDir": "./dist", - "target": "ES2021", + "target": "ES2022", "lib": [ - "ES2021", + "ES2022", "DOM" ], "allowJs": true,