Reputation: 249646
I would like to do a bit of educational debugging inside the typesctipt compiler, but getting it to work in visual studio appears to be a bit trickier then I would have thought.
I tried creating a project and adding the compiler source file to a Visual Studio project but that gets me hundreds of errors.
Upvotes: 1
Views: 92
Reputation: 275867
Just open the typescript.ts
file in src/compiler
folder with visual studio and you will get the typeScript Compiler project.
Upvotes: 1