In my Typescript 2.2.1 project in Visual Studio 2015 Update 3, I am getting hundreds of errors in the error list like:
Cannot write file \'C:/{{my-project
I got the same issue. In my case, it was the result of the option: allowJs: true.
allowJs: true
So I basically had to remove that line to get rid of the errors. I do not see it in your code, but perhaps it helps you here.
Good luck!