-
Notifications
You must be signed in to change notification settings - Fork 122
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
Implement way for language server to communicate to client that Angular is not in workspace #1237
Labels
Comments
atscott
added a commit
to atscott/vscode-ng-language-service
that referenced
this issue
Apr 2, 2021
…lar project This commit updates our client-side short-circuit logic to provide an additiona short circuit that avoids tokenizing typescript files when they are not within a project that uses Angular. fixes angular#1237
atscott
added a commit
to atscott/vscode-ng-language-service
that referenced
this issue
Apr 5, 2021
…lar project This commit updates our client-side short-circuit logic to provide an additiona short circuit that avoids tokenizing typescript files when they are not within a project that uses Angular. fixes angular#1237
atscott
added a commit
to atscott/vscode-ng-language-service
that referenced
this issue
Apr 5, 2021
…lar project This commit updates our client-side short-circuit logic to provide an additiona short circuit that avoids tokenizing typescript files when they are not within a project that uses Angular. fixes angular#1237
atscott
added a commit
to atscott/vscode-ng-language-service
that referenced
this issue
Apr 5, 2021
…lar project This commit updates our client-side short-circuit logic to provide an additiona short circuit that avoids tokenizing typescript files when they are not within a project that uses Angular. fixes angular#1237
atscott
added a commit
to atscott/vscode-ng-language-service
that referenced
this issue
Apr 9, 2021
…lar project This commit updates our client-side short-circuit logic to provide an additiona short circuit that avoids tokenizing typescript files when they are not within a project that uses Angular. fixes angular#1237
atscott
added a commit
to atscott/vscode-ng-language-service
that referenced
this issue
Apr 9, 2021
…lar project (angular#1259) This commit updates our client-side short-circuit logic to provide an additiona short circuit that avoids tokenizing typescript files when they are not within a project that uses Angular. fixes angular#1237
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We currently have middleware in the client side that tokenizes typescript files to determine if the position is within an inline template before forwarding the request to the server. This is done for performance reasons and allows us to prevent the server from being a bottleneck for typescript files in these cases. However, this tokenization is done for all typescript files, even in non-Angular projects. We should implement a way to communicate from the server back to the client that Angular was not detected in the workspace and that we should skip the tokenization/short-circuit logic.
The text was updated successfully, but these errors were encountered: