Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WebStorm see TypeScript server logs

In VSCode I can go into 'OUTPUT' and see logs of all internal tasks that VSCode is running for me, for example a TypeScript server:

enter image description here

I need to see the logs of the TypeScript server in WebStorm because I need to debug weird compilation behavior.

How can I reveal all tasks and servers and their logs WebStorm is running for me?

like image 980
Eliav Louski Avatar asked Aug 31 '25 22:08

Eliav Louski


1 Answers

You can enable debug logging for #com.intellij.lang.javascript.service.JSLanguageServiceQueue:trace in Help | Debug log settings and then inspect the idea.log.* files (Help > Show Log in ...) as well as the .log files created in your project folder while working with your app

like image 199
lena Avatar answered Sep 03 '25 18:09

lena