From 0fa9e05f3e0d0d35ec1f5b3ad0fe2b6fdb371fb2 Mon Sep 17 00:00:00 2001 From: Kirill Kuvshinov Date: Mon, 14 Oct 2024 11:58:11 +0300 Subject: [PATCH] chore: use es2020 target Update Typescript target to unify this setting across the repos Signed-off-by: Kirill Kuvshinov --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index e77730b7..c3cbff7b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,7 +15,7 @@ "resolveJsonModule": true, "sourceMap": true, "strict": true, - "target": "es6", + "target": "es2020", "outDir": "dist", "paths": { "@nomiclabs/hardhat-ethers": ["node_modules/hardhat-deploy-ethers"]