From f4af43b724f7994e8367febe51ffaa6ff4039acd Mon Sep 17 00:00:00 2001 From: Raju Ahmed Date: Thu, 15 May 2025 23:54:36 +0600 Subject: [PATCH] [FSSDK-11503] update build target to ES6 --- tsconfig.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index c69f440b6..e70a7ce62 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,10 @@ { "compilerOptions": { - "target": "es5", - "module": "esnext", + "target": "ES6", + "module": "ESNext", "lib": [ - "es2015", - "dom" + "ES6", + "DOM", ], "declaration": true, "strict": true,