From c632bb784c071496d168b1897636fe9444c6c473 Mon Sep 17 00:00:00 2001 From: Kirill Kuvshinov Date: Wed, 11 Sep 2024 15:26:29 +0300 Subject: [PATCH] chore: use lib es2020 Most of our repositories use lib es2020 (e.g. for Array.includes), and there are no known compatibility issues we resolve by using es6 here --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 0ff17b02..cb8b8bbc 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"]