First of all, I\'ve already seen the other posts about error TS1005. Same error code, but totally different.
A simple let x: number; will gener
let x: number;
I was injecting service like this:
private messageShowService MessageShowService
instead of:
private messageShowService: MessageShowService
and that was the reason of error, despite nothing related with ',' was there.
','