From 59628aea5ea0a0ed02b9133e780f72839c7f0188 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 29 Jul 2023 14:26:42 +0100 Subject: [PATCH] Build server against es2021, instead of es2020 --- project/base_tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/base_tsconfig.json b/project/base_tsconfig.json index aff06a61..a5b9984f 100644 --- a/project/base_tsconfig.json +++ b/project/base_tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "allowJs": false, "module": "commonjs", - "target": "es2020", + "target": "es2021", "allowSyntheticDefaultImports": true, "moduleResolution": "node", "esModuleInterop": true,