Is there an easy way to step through TypeScript compiler (tsc.js) and observe how it works?
Is there an easy way to step through TypeScript compiler (tsc.js) and observe how
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
One way is to use Windows Script Host with //x key. You need Visual Studio installed, and you can’t use source maps to debug over the original source.
Another way is to debug it in Node.js using tools like Nodeclipse or similar.
The easiest way is to debug it using Developer Tools embedded in any modern browser. There is a web page emulating platform IO and allowing to run TSC over it:
http://mihailik.github.com/tsc.browser/