Hello,
I have just updated my Angularfire 2 to 2.0.0-beta.5 and I have a "Traceur" 500 error.
zone.min.js:1 GET http://localhost:3000/traceur/ 500 (Internal Server Error)
I have seen another closed issue about it : [https://github.com/angular/angularfire2/issues/530] but as I am using the last version of angularfire2 (which should have fixed the problem)...
By the way, I do not have the error when I set up the version 2.0.0-beta.4.
got the same issue, i just updated the angular-cli to 1.0.0-beta.15, created a new project with "ng new", installed firebase and angularfire2 with "npm install firebase angularfire2 --save ", copied my project files to the new project and it worked as expected when i run it with ng serve.
Unfortunately, I do not use the angular-cli... But thanks hllink
me neither, i started to use it because its required for angularfire2 to work, i almost wrote myself a service using the web api from firebase, i was very resistant about it but now it works just fine and the setup took me 5 minutes..
[edit] i even tried to change the systemjs,packagejs and tsconfigjs to make it work, as i described on this issue https://github.com/angular/angularfire2/issues/537
Basically, the solution was pretty simple. You don't need to use all the angular-cli dependencies but just to add the traceur dependency "traceur": "0.0.96" in your package.json and in my SystemJs case load the traceur.js by adding its path in the systemjs.config.js file.
hllink, your solution is still relevant because the traceur dependency is included in the angular-cli.
Oh good to know! thank you!