Currently, I am tackling a project in VS 2013 using angular2@beta, having previously worked with IntelliJ. In IntelliJ, I utilized the tsconfig.json file and TypeScript 1.6, which allowed me to exclude node_modules from compilation. However, upon moving to VS 2013 with TypeScript 1.7, I encountered issues as it attempted to compile node_modules. While I have included tsconfig.json, it seems that full support for it is only available in VS 2015. Is there a way to instruct VS 2013 to exclude these files or to utilize my tsconfig.json instead?
It is worth mentioning that angular2@beta includes its typings in the source during npm install, resulting in all typings being mixed in with other files. Deleting the non-.d.ts files might be a solution to obtain the typings without errors. Previously, "tsd install angular2" was used to acquire typings, but it is no longer an option. Finding a solution to this would address the prior complication.
Update
Though I managed to resolve these issues on VS 2015 - Community Edition, I am interested in exploring options to make it work on VS 2013.