ОШИБКА в node_modules/@ngrx/core/src/operator/enterZone.d.ts (1,10): хранилище ngrx - PullRequest
1 голос
/ 18 марта 2019

У меня возникают следующие проблемы при импорте StoreModule.provideStore ({counter: todos});

ОШИБКА в node_modules/@ngrx/core/src/operator/enterZone.d.ts (1,10): ошибка TS2305: Модуль '"E: / work / nrgx-store2 / my-dream-app / node_modules / rxjs / Operator" "не имеет экспортированного члена" Operator ".node_modules/@ngrx/core/src/operator/enterZone.d.ts (2,10): ошибка TS2305: Модуль '"E: / work / nrgx-store2 / my-dream-app / node_modules / rxjs / Subscriber" "не имеет экспортированного члена «Подписчик».node_modules/@ngrx/core/src/operator/enterZone.d.ts (3,10): ошибка TS2305: Модуль 'E: / work / nrgx-store2 / my-dream-app / node_modules / rxjs / Observable "'не имеет экспортированного члена «Наблюдаемый».node_modules/@ngrx/core/src/operator/leaveZone.d.ts (1,10): ошибка TS2305: Модуль «E: / work / nrgx-store2 / my-dream-app / node_modules / rxjs / Operator» 'не имеет экспортированного члена «Оператор».node_modules/@ngrx/core/src/operator/leaveZone.d.ts (2,10): ошибка TS2305: Модуль '"E: / work / nrgx-store2 / my-dream-app / node_modules / rxjs / Subscriber" "не имеет экспортированного члена «Подписчик».node_modules/@ngrx/core/src/operator/leaveZone.d.ts (3,10): ошибка TS2305: Модуль '"E: / work / nrgx-store2 / my-dream-app / node_modules / rxjs / Observable" "не имеет экспортированного члена «Наблюдаемый».node_modules/@ngrx/core/src/operator/select.d.ts (1,10): ошибка TS2305: Модуль 'E: / work / nrgx-store2 / my-dream-app / node_modules / rxjs / Observable "'не имеет экспортированного члена «Наблюдаемый».node_modules/@ngrx/store/src/dispatcher.d.ts (1,10): ошибка TS2305: Модуль '"E: / work / nrgx-store2 / my-dream-app / node_modules / rxjs / BehaviorSubject" "не имеетэкспортированный член "Поведенческий объект".node_modules/@ngrx/store/src/ng2.d.ts (1,10): ошибка TS2305: Модуль "E: / work / nrgx-store2 / my-dream-app / node_modules / @ angular / core / core"'не имеет экспортированного члена' OpaqueToken '.node_modules/@ngrx/store/src/reducer.d.ts (1,10): ошибка TS2305: Модуль '' E: / work / nrgx-store2 / my-dream-app / node_modules / rxjs / BehaviorSubject "'не имеетэкспортированный член "Поведенческий объект".node_modules/@ngrx/store/src/state.d.ts (1,10): ошибка TS2305: Модуль "E: / work / nrgx-store2 / my-dream-app / node_modules / rxjs / BehaviorSubject" "не имеетэкспортируемый элемент 'BehaviorSubject'.

  @NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    StoreModule.provideStore({ counter: todos })
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

package.log

    {
  "name": "my-dream-app",
  "version": "0.0.0",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "~7.2.0",
    "@angular/common": "~7.2.0",
    "@angular/compiler": "~7.2.0",
    "@angular/core": "~7.2.0",
    "@angular/forms": "~7.2.0",
    "@angular/platform-browser": "~7.2.0",
    "@angular/platform-browser-dynamic": "~7.2.0",
    "@angular/router": "~7.2.0",
    "@ngrx/core": "^1.2.0",
    "@ngrx/store": "^2.2.3",
    "core-js": "^2.5.4",
    "rxjs": "~6.3.3",
    "tslib": "^1.9.0",
    "zone.js": "~0.8.26"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "~0.13.0",
    "@angular/cli": "~7.3.6",
    "@angular/compiler-cli": "~7.2.0",
    "@angular/language-service": "~7.2.0",
    "@types/node": "~8.9.4",
    "@types/jasmine": "~2.8.8",
    "@types/jasminewd2": "~2.0.3",
    "codelyzer": "~4.5.0",
    "jasmine-core": "~2.99.1",
    "jasmine-spec-reporter": "~4.2.1",
    "karma": "~4.0.0",
    "karma-chrome-launcher": "~2.2.0",
    "karma-coverage-istanbul-reporter": "~2.0.1",
    "karma-jasmine": "~1.1.2",
    "karma-jasmine-html-reporter": "^0.2.2",
    "protractor": "~5.4.0",
    "ts-node": "~7.0.0",
    "tslint": "~5.11.0",
    "typescript": "~3.2.2"
  }
}
...