-
Notifications
You must be signed in to change notification settings - Fork 123
feat: Prompt to use the Ivy Language Service if VE is detected #1099
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
Conversation
00d2b75
to
8d74f07
Compare
client/src/client.ts
Outdated
'Ignore', | ||
); | ||
if (selection === enableIvy) { | ||
config.update('angular.experimental-ivy', true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this per-workspace or global?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default is WorkspaceFolder
- I've updated this to be global. We might want to discuss how we want to approach it. Maybe the ignore
selection is global and the enable
option is per workspace? WDYT?
2701ea7
to
2339d96
Compare
In order to drive adoption of the new Ivy Language Service before it becomes the default in v12, this commit adds a prompt for users to enable it if they are using `@angular/core` v9+. Fixes angular#1095
2339d96
to
0b125c4
Compare
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. |
In order to drive adoption of the new Ivy Language Service before it
becomes the default in v12, this commit adds a prompt for users to
enable it if they are using
@angular/core
v9+.Fixes #1095