Skip to content

Commit

Permalink
Update target in tsconfig.json to 'es2020' (#2420)
Browse files Browse the repository at this point in the history
tsconfig-google.json explicitly sets this to 'es2018', so need to
override it, to prevent lint warnings about using es2020 specific
features.

This would have previously caused warnings when using es2019 specific
features, but apparently CTS didn't use any of them.

Issue #2416
  • Loading branch information
zoddicus authored Mar 15, 2023
1 parent 452c87e commit f9fb7d5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"moduleResolution": "node",
"esModuleInterop": false,
"skipLibCheck": true,
"target": "es2020"
},
"include": [
"src/**/*.ts",
Expand Down

0 comments on commit f9fb7d5

Please sign in to comment.