From c7331349d3f4edf7e3a18c778d1fdba629bd30ec Mon Sep 17 00:00:00 2001 From: "Yuichiro Tachibana (Tsuchiya)" Date: Fri, 24 Jan 2025 04:21:24 +0900 Subject: [PATCH] Fix sharing-editor/tsconfig.json setting the target as ES6 (#1288) --- packages/sharing-editor/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sharing-editor/tsconfig.json b/packages/sharing-editor/tsconfig.json index 06a02d3a7..560828323 100644 --- a/packages/sharing-editor/tsconfig.json +++ b/packages/sharing-editor/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "es5", + "target": "es6", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true,