TS1109TS1109 — Expression Expected
TypeScript expected an expression but found a token that cannot start an expression.
TS1056Getter/setter accessors require a higher ECMAScript target version.
Property accessors (get/set) require the target to be ES5 or higher. If your tsconfig target is set to ES3, accessors are not available.
Set the target to ES5 or higher in tsconfig.json. Use regular methods instead of accessors if you must target ES3.
TS1109TypeScript expected an expression but found a token that cannot start an expression.
TS2300The same identifier is declared more than once in the same scope.
TS2739An object type is missing multiple required properties from the target type.
TS2531TypeScript warns that an expression could be null at runtime, and you are using it without checking.
TS5023An unrecognized option was found in tsconfig.json.
TS2740An object type is missing required properties that are expected by the target type.