-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
stuck at step 3 setting up a new project #470
Comments
Had the Same problem on my Ionic App and had to revert to Beta.2. |
Same mistake here: Error with "ng build && ng serve" following "Installation and Setup" guide The problem at the moment is not resolved at home. The additional step that was provided to us was to add npm install -g typescript@next
npm install typescript@next --save-dev and tsconfig: {
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es6", "dom"],
"mapRoot": "./",
"module": "es6",
"moduleResolution": "node",
"outDir": "../dist/out-tsc",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"../node_modules/@types"
],
"types": [
"jasmine",
"firebase"
]
}
} But this raises worries on my side I now full of new errors . In case if it can help. |
you can import firebase to the module file where you init angularfire |
Thanks cre8, that solved the issue for me |
followed installation guide, created a new project, installed firebase and angularfire2, replaced the main.ts file with the one provided (and added the firebase config).
After that my app does not compile, I get multiple errors like this :
.../node_modules/angularfire2/angularfire2.d.ts:13:65
Cannot find namespace 'firebase'.
The text was updated successfully, but these errors were encountered: