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 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. */,