Titian Cernicova-Dragomir
Titian Cernicova-Dragomir

Reputation: 249646

Is there a quick way to get the typescript compiler source working in Visual Studio

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

Answers (1)

basarat
basarat

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

Related Questions