From 0449608a0eee635d758d9a783fa77f5559d9f093 Mon Sep 17 00:00:00 2001 From: absidue <48293849+absidue@users.noreply.github.com> Date: Mon, 4 Nov 2024 22:11:48 +0100 Subject: [PATCH 1/2] fix: Bump tsconfig target to es2017 to avoid polyfilling await --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 9e95d3bd..8233bf31 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { /* Basic Options */ // "incremental": true, /* Enable incremental compilation */ - "target": "es2015" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */, + "target": "es2017" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */, "module": "node16" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, // "lib": [], /* Specify library files to be included in the compilation. */ // "allowJs": true /* Allow javascript files to be compiled. */, From 9ce64d24dcb0ef90aeebd3118eb757c01ed4ba1d Mon Sep 17 00:00:00 2001 From: Yosuke Ota Date: Tue, 19 Nov 2024 09:52:37 +0900 Subject: [PATCH 2/2] Create rotten-kangaroos-hope.md --- .changeset/rotten-kangaroos-hope.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/rotten-kangaroos-hope.md diff --git a/.changeset/rotten-kangaroos-hope.md b/.changeset/rotten-kangaroos-hope.md new file mode 100644 index 00000000..fb46dfbd --- /dev/null +++ b/.changeset/rotten-kangaroos-hope.md @@ -0,0 +1,5 @@ +--- +"@intlify/eslint-plugin-vue-i18n": minor +--- + +fix: Bump tsconfig target to es2017 to avoid polyfilling await