-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ERROR in node_modules/rxjs/internal/types.d.ts(81,44): error TS1005: ';' expected. #4540
Comments
Closing this as a dupe of #4512 as I believe that is the underlying problem. |
Change to from rxjs 6.4.0 TO "rxjs": "6.0.0", |
@AliAdravi can you show me how did you do it? |
@aleRozo thanks @AliAdravi |
I just upgraded the Angular CLI and Core for my project to the latest versions using "ng update @angular/cli @angular/core" inside the project and the problem went away. Hope this helps! |
|
thank you for your help. My problem continue because is a problem of a dependency of "angular-resizable"
…________________________________
De: dherenj <notifications@github.com>
Enviado: viernes, 1 de marzo de 2019 1:25 p.m.
Para: ReactiveX/rxjs
Cc: Alejandra Rozo; Mention
Asunto: Re: [ReactiveX/rxjs] ERROR in node_modules/rxjs/internal/types.d.ts(81,44): error TS1005: ';' expected. (#4540)
I just upgraded the Angular CLI and Core for my project to the latest versions using "ng update @angular/cli @angular/core" inside the project and the problem went away. Hope this helps!
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#4540 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ApXUPErWJ70sF_WnQtgbxdKOmVRV_nRnks5vSXC0gaJpZM4apuHG>.
|
If you are using rxjs-compat then you also need to do following in order to fixed the issue. change the rxjs-compat version from "rxjs-compat": "^6.2.2" to "rxjs-compat": "6.2.2" Hope this will help! |
if you are still facing the problem, go to package.json remove rxjs and add rxjs-compat also, "rxjs-compat": "^6.4.0" to "rxjs-compat": "6.4.0", change the typscript version to 2.8 run npm install |
Thank you, this did work for me |
Worked for me. Thanks. |
Nothing of these solutions worked for me. Still -arrived here by google |
@realsony |
@realsony , Did you find the solution for this? |
@fahrimz , It didn't solved for me. |
i solved it but right now I cannot remember in detail how to. Sorry. Right now I use: |
You need to do some changes in
|
Thank you @cordsac ... |
This worked for me in ionic@3
|
Go to your project directory and run the command >npm install rxjs@6.0.0 --save |
npm install rxjs@6.0.0 --save |
As for most of you, below command works for me as well: |
Started using yarn today and i fixed it with yarn add rxjs@6.0.0 |
it work for me |
It worked for me |
Worked for me! |
npm install rxjs@6.0.0 --save |
npm install rxjs@6.0.0 --save |
It worked. Thanks |
Thank you, @cordsac. |
Doing this "npm install rxjs@6.0.0 --save" solved my problem. Thanks! |
npm uninstall rxjs (higher version of rxjs above 6.0.0) This is worked for me! |
Worked for me as well! |
Open up package.json, and change "rxjs": "^6.0.0", to "rxjs": "6.0.0" |
Why did this work? |
This worked for me. Thanks |
Bug Report
Current Behavior
There is a missing ';' reported for types.d.ts
The text was updated successfully, but these errors were encountered: