Question

The MSDN documentation describes ways in which to extend the JavaScript IntelliSense for Visual Studio 2012 RC. Is there a way to debug, or at least log to some output, any custom extension work?

Was it helpful?

Solution

Ha just found output logging at least by exploration.

if(intellisense) {
    intellisense.logMessage("hi!");
}

This will write output to "JavaScript Language Service" in output window.

JavaScript Language Service Output

Now about debugging? :)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top