From 9229f45d592f778dc08e16bd761f5ab234a9b0a0 Mon Sep 17 00:00:00 2001 From: Dolan Date: Mon, 25 Dec 2023 01:50:26 +0000 Subject: [PATCH] Downgrade Build to ES2015 (#2473) --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index a990bb0534c..c7c3ca565f1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,9 @@ { "compilerOptions": { - "target": "ES2020", + "target": "ES2015", "useDefineForClassFields": true, "module": "ESNext", - "lib": ["ES2020", "DOM", "DOM.Iterable"], + "lib": ["ES2015", "DOM", "DOM.Iterable"], "skipLibCheck": true, /* Bundler mode */