Expression expected.ts(1109) after TypeScript upgrade to 3.7.2

Click the version in the bottom right of VS Code.

TS Version

A dropdown will appear at the top with a few options such as "Use VS Code's Version" and "Use Workspace Version".

Select "Use Workspace Version" which will select the version of typescript that tsc is using, typically installed in your devDependencies.

This will automatically add a line to your Workspace Configuration File that looks something like the following:

{
   "typescript.tsdk": "node_modules/typescript/lib"
}

It could be that your editor isn't using TypeScript 3.7 yet - see if there are options for using the TypeScript version in the TSServer from from your node_modules.