Skip to content

Commit

Permalink
tsconfig: bump es target version
Browse files Browse the repository at this point in the history
  • Loading branch information
danimoh committed Sep 6, 2024
1 parent c415852 commit 9e93f27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
/* Basic Options */
"target": "ES2020", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
"lib": ["DOM", "ES2020"], /* Specify library files to be included in the compilation. */
"target": "ES2021", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
"lib": ["DOM", "ES2021"], /* Specify library files to be included in the compilation. */
"module": "CommonJS", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"allowJs": true, /* Allow javascript files to be compiled. */
"checkJs": true, /* Report errors in .js files. */
Expand Down

0 comments on commit 9e93f27

Please sign in to comment.