Can't stop Visual Studio 2015 lagging for seconds in JS files saying “JavaScript language service is processing your request in the background…”?

不羁岁月 提交于 2019-12-02 22:07:22
Chris Hutchinson

I stopped the lagging by editing _references.js and setting autosync enabled="false" and removing a ton of 3rd-party (angular, ionic) library files from the listed references.

<autosync enabled="false" />

to the top of _references.js file

If previous answer is not clear enough or tl;dr

add

/// <autosync enabled="false" />

to the top of _references.js file

I faced the same problem. I have installed the latest updates but the problem remained. Then, I disabled the 3rd party add-ons one by one. It now works without any problems. It is clear that some 3rd party add-ons have bugs causes visual studio malfunctioning.

Hope it works.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!