Skip to content

Commit

Permalink
fix: Bump tsconfig target to es2017 to avoid polyfilling await (#567)
Browse files Browse the repository at this point in the history
* fix: Bump tsconfig target to es2017 to avoid polyfilling await

* Create rotten-kangaroos-hope.md

---------

Co-authored-by: Yosuke Ota <[email protected]>
  • Loading branch information
absidue and ota-meshi authored Nov 19, 2024
1 parent 3b640a6 commit 4ae81b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/rotten-kangaroos-hope.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@intlify/eslint-plugin-vue-i18n": minor
---

fix: Bump tsconfig target to es2017 to avoid polyfilling await
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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. */,
Expand Down

0 comments on commit 4ae81b0

Please sign in to comment.