In my angular2 component, I have
import * as Rx from '@reactivex/rxjs';
The Visual Studio complaints that 'Cannot find module @reactivex/rxjs'
I see that @reactivex\rxjs is installed under node_modules under angular2. The following is the folder structure.
node_modules\angular2\node_modules\@reactivex\rxjs
How can I fix so I can use Rx in the component?
UPDATE:
A similar issue from Github.