Skip to content

Commit f9fb7d5

Browse files
authored
Update target in tsconfig.json to 'es2020' (#2420)
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
1 parent 452c87e commit f9fb7d5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"moduleResolution": "node",
1919
"esModuleInterop": false,
2020
"skipLibCheck": true,
21+
"target": "es2020"
2122
},
2223
"include": [
2324
"src/**/*.ts",

0 commit comments

Comments
 (0)