From 55e7d4103ca9e043ba77bbafbf4180c56bb52f88 Mon Sep 17 00:00:00 2001 From: Pedr Date: Sun, 4 Aug 2024 16:12:59 +0100 Subject: [PATCH] chore: Switch to ES2017 compile target --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 0356e7c..d35dfe4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ "strict": true, "module": "preserve", // try esnext "moduleResolution": "bundler", // For Vite - "target": "ES2015", + "target": "ES2017", "sourceMap": true, "outDir": "./dist", "esModuleInterop": true,