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
Initially it failed to find electron, so I did an npm install electron --save and that resolved that issue.
Then, when attempting to do npm run build again, this happened:
ERROR in [at-loader] ./node_modules/rxjs/Subject.d.ts:24:5
TS2416: Property 'lift' in type 'Subject<T>' is not assignable to the same property in base type 'Observable<T>'.
Type '<R>(operator: Operator<T, R>) => Observable<T>' is not assignable to type '<R>(operator: Operator<T, R>) => Observable<R>'.
Type 'Observable<T>' is not assignable to type 'Observable<R>'.
Type 'T' is not assignable to type 'R'.
The text was updated successfully, but these errors were encountered:
Maybe npm just installed a bad version of rxjs for me. I adjusted the line of code in node_modules/rxjs/Subject.d.ts to instead of and build worked. Curious to see if this breaks anything!
I haven't built this project in a while, so the dependencies have probably updated and need to be resolved. If it helps, I'm using rxjs@5.0.0-rc.4. What version of rxjs does your build have?
Initially it failed to find
electron
, so I did an npm install electron --save and that resolved that issue.Then, when attempting to do
npm run build
again, this happened:The text was updated successfully, but these errors were encountered: