Closed
Description
I noticed Typescript errors were no longer being matched correctly. After a bit of research it seems the format has changed? I couldn't find confirmation, but here's a comparison:
Before:
src/commandHandler.ts(107,11): error TS2322: Type 'Response<ReposGetCollaboratorPermissionLevelResponse>' is not assignable to type 'Response<CollaboratorPermissionLevel>'.
Now:
src/commandHandler.ts:107:11 - error TS2322: Type 'Response<ReposGetCollaboratorPermissionLevelResponse>' is not assignable to type 'Response<CollaboratorPermissionLevel>'.
It seems a small change to the regex in the tsc.json could be changed to accommodate both patterns.