As the name suggests, I'm looking for information about which features / extensions I can disable to solve a specific problem with the Visual Studio 2017 IDE (Windows).
When I work in Typescript, the following will lead to the node.js process to increase CPU usage and lock the IDE for a few seconds with each keystroke. This happens when filling in paths for import and export operations, for example:
import { foo } from 'app/file/bar'; export { foo } from 'app/file/bar';
As soon as I start typing 'app/file/bar' everything goes to hell. The Windows Resource Monitor shows node.exe, diving almost 100% of the processor. Its almost the same as scanning my entire project with every keystroke, so that he can try and offer options for autocompletion (but nothing appears, everything just suffocates).
I made sure my tsconfig excludes node_modules .
Please help - I have so much work to do!
source share