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
Hi, @jovelromeo
Can you show the error?
Since importing from 'rxjs' will most probably bundle complete rxjs library into your project it's not the best way to go. One should import a bare minimum.
I made a further investigation and It seems that rxJS6 change the path so
this template is not working with that version.
I think that making the import from 'rxjs/internal/Observable' is the way
to go.
The file client.ts is generated with an import at line 3:
import { Observable } from 'rxjs/Observable';
wich generates an error.
I guess this has to be changed to:
import { Observable } from 'rxjs';
The text was updated successfully, but these errors were encountered: