Не удалось скомпилировать.
. / Node_modules / ng2-toastr / src / toast-manager.js Модуль не найден: Ошибка: не удается разрешить 'rxjs / Subject' в '/ Users/ siva / Desktop / Angular / chatApp / node_modules / ng2-toastr / src '
Я использую ng2-toastr в угловой версии 6.когда я запускаю приложение, на странице появляется сообщение об ошибке выше, и я импортировал все правильно объявленные
Это код
import { Component, OnInit , ViewContainerRef } from '@angular/core';
import { AppService } from './../../app.service';
import { Routes, Router } from '@angular/router';
import { ToastsManager } from 'ng2-toastr/ng2-toastr';
@Component({
selector: 'app-signup',
templateUrl: './signup.component.html',
styleUrls: ['./signup.component.css']
})
export class SignupComponent implements OnInit {
public firstName: any;
public lastName: any;
public mobile: any;
public email: any;
public password: any;
public apiKey: any;
constructor(
public appService: AppService,
public router: Router,
private toastr: ToastsManager,
vcr: ViewContainerRef
) { }