-
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
fix: unable to load ivy native plugin #1111
fix: unable to load ivy native plugin #1111
Conversation
@ivanwonder thank you very much for identifying the bug and fixing it. If you don't mind, I'll do a small clean up and merge this so that we could get it released asap. |
In typescript 4.1.4, ts allows only package names as plugin names, so `@angular/language-service/bundles/ivy` is disabled by ts. This PR will resolve `@angular/language-service` to path `./bundles/ivy.js` when the user enables the Ivy-native language service. fixed angular#1109
1eeb8be
to
b75a71a
Compare
Starting from `@angular/language-service` v12.0.0-next.3, the package will dynamically load View Engine or Ivy LS based on the config passed to the plugin. This reverts angular#1111
Starting from `@angular/language-service` v12.0.0-next.3, the package will dynamically load View Engine or Ivy LS based on the config passed to the plugin. This reverts angular#1111
Starting from `@angular/language-service` v12.0.0-next.3, the package will dynamically load View Engine or Ivy LS based on the config passed to the plugin. This reverts angular#1111
Starting from `@angular/language-service` v12.0.0-next.3, the package will dynamically load View Engine or Ivy LS based on the config passed to the plugin. This reverts #1111
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 typescript 4.1.4, ts allows only package names as plugin names,
so
@angular/language-service/bundles/ivy
is disabled by ts. ThisPR will resolve
@angular/language-service
to path./bundles/ivy.js
when the user enables the Ivy-native language service.
fixed #1109