From 9fa83e1d730abf5d9c7c5309f2cbbb489b73f373 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Sun, 25 Aug 2024 15:33:50 +0300 Subject: [PATCH] chore: update typescript target to ES2018 This requires Node >=10. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d40d413d1b..5a4897f9fa 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "es6", + "target": "ES2018", "module": "commonjs", "outDir": "dist", "allowJs": true,