-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Performance Issues: Slow Response, Requires Frequent Restarts, Affects TS Files #2131
Comments
seeing this too ever since updating to Angular 19 |
I wish the angular team would treat performance with higher consideration. I'm sick of vscode locking up and crashing after a bunch of work is done, it's a horrible way to work. |
I'm not sure if it's the same issue, but I want to contribute my experience -
This is right now the only reason I don't use vscode (opting for WebStorm, which works fine). Would love some updates if this is something that is going to be fixed so I can try vscode again. |
cmd/ctrl clicking on an import and getting a result takes 5-15 seconds. Depending if it's in the node modules it takes even longer. After turning it off and doing the same it gives me instantaneous results no matter where it is located. I am on a M2 Macbook pro max 64 GB (Sequoia 15.3.2) |
In the past for performance debugging, we have often used https://github.com/atscott/ng-speed-rebuild. I haven't observed performance issues that have previously come up when something is awry. To those experiencing issues:
|
Update: I moved to zed and am using the angular LSP on that. My performance issues have all disappeared! (Note: they're about to release their debugger so I haven't tested with that open yet.) |
Thats a really interesting datapoint. Since the extension uses the language server npm package that we publish here, there’s not much difference in how these should perform other than VSCode vs Zed as an IDE. There’s very little we do on the client side for the VSCode extension other than short-circuit prevention from even sending requests to the server when not in an Angular context. |
I'd like to point out that the issue is not with the build process, but with intellisense in VS Code. After disabling the Angular Language Service plugin, intellisense starts working instantly. With the plugin enabled, there are significant delays in autocompletion and other intellisense features. This problem specifically occurs in large repositories, while performance is normal in smaller ones. This makes it difficult to create a simple reproduction case. |
This is one and the same. The language service needs to compile the whole program in order to provide autocomplete features. NgModules require global knowledge. Standalone components can make this better and there is work necessary to improve partial compilation in this area. Autocomplete is disabled in TypeScript contexts. It should not be affecting anything other than autocomplete inside templates. Incremental compilation for changes to template files should be reasonably fast. |
I tried again now with both my repo and the example repo and it seems to work much better. There is a noticeable delay in the first "Go to action" but I've tried a bunch after it and the rest are smooth, which mean I can work. |
Is this a regression?
Unknown, but recent updates seem to have worsened the issue.
Description
The Angular Language Service in VSCode is significantly slowing down development. The extension often becomes unresponsive, leading to delays in template and TypeScript file analysis. Restarting the extension temporarily resolves the issue but hampers workflow. These problems are consistent with the experiences shared by users in the VSCode Marketplace reviews.
Key Issues:
Bug Type
What does this bug affect
Reproduction
Steps to reproduce the behavior:
Expected behavior
The Angular Language Service should provide quick and responsive language features without requiring frequent restarts or causing performance issues.
🌍 Your Environment
Angular Version:
Extension Version:
VSCode Version:
Operating System:
Extension options:
The text was updated successfully, but these errors were encountered: