You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is pretty easy to reproduce. I'm using plugin v0.1.3.
On your system, just globally install the latest @angular/cli (as of this issue creation, it's 1.1.1).
Run ng new test-project
Open the test-project folder in VSCode with the v0.1.3 version of the plugin loaded.
Go to the app.component.html file, and try to go to definition of the title variable.
Expected: It should be able to take you to the simple title member of app.component.ts
Actual: Says 'no definition for title'
As a comparison, if you remove the globally installed latest @angular/cli and install a slightly older version (1.0.1, installed for example by npm -g install @angular/[email protected]), then the plugin works as expected.
I'm assuming newer version of the angular cli are just doing something different that this plugin doesn't like. But I can't figure out exactly what...
The text was updated successfully, but these errors were encountered:
This is pretty easy to reproduce. I'm using plugin v0.1.3.
@angular/cli
(as of this issue creation, it's 1.1.1).ng new test-project
test-project
folder in VSCode with the v0.1.3 version of the plugin loaded.app.component.html
file, and try to go to definition of thetitle
variable.Expected: It should be able to take you to the simple
title
member ofapp.component.ts
Actual: Says 'no definition for title'
As a comparison, if you remove the globally installed latest
@angular/cli
and install a slightly older version (1.0.1, installed for example bynpm -g install @angular/[email protected]
), then the plugin works as expected.I'm assuming newer version of the angular cli are just doing something different that this plugin doesn't like. But I can't figure out exactly what...
The text was updated successfully, but these errors were encountered: