How to Turn Off Output Window of VS Code (for Angular Language Service)?

Viewed 2519

Output Window of Visual Studio Code opens on its own while I'm typing or just clicking Angular code I'm working on and it's very disturbing.

Angular Language Service plug-in is installed I don't see any settings for it.

Update

I've opened an issue on Github repo.

2 Answers

Go to File > Preferences > Settings

Add this line in the User Settings :

"tslint.enable": false
Related