From f9fb7d56b7aeb280ef3cc35bf031ff6c1c600366 Mon Sep 17 00:00:00 2001 From: Ryan Harrison Date: Wed, 15 Mar 2023 16:11:37 -0400 Subject: [PATCH] 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 --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 32c76ddc790f..7687874d3157 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,6 +18,7 @@ "moduleResolution": "node", "esModuleInterop": false, "skipLibCheck": true, + "target": "es2020" }, "include": [ "src/**/*.ts",