Skip to content

Commit 68100e2

Browse files
authored
chore(docs): Emphasize TypeScript 2.0 requirement
1 parent c1642ca commit 68100e2

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

docs/1-install-and-setup.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,15 @@
88

99
### 0. Prerequisites
1010

11+
You need the Angular CLI, typings, and TypeScript 2.0. TypeScript 2.0 is required for AngularFire2.
12+
1113
```bash
1214
npm install -g angular-cli@webpack
1315
# or install locally
1416
npm install angular-cli@webpack --save-dev
1517
# make sure you have typings installed
1618
npm install -g typings
19+
npm install -g [email protected]
1720
```
1821

1922
### 1. Create a new project
@@ -119,21 +122,6 @@ Open `/src/app/<my-app>.component.html`:
119122
</ul>
120123
```
121124

122-
The `async` pipe unwraps the each item in the people
123-
observable as they arrive. Also the array that is received through the `items` observable contains objects that have a `$value` property. A structure like this:
124-
```
125-
[
126-
{
127-
$value: 'something',
128-
(...)
129-
},
130-
{
131-
$value: 'something else',
132-
(...)
133-
},
134-
]
135-
```
136-
137125
### 6. Serve
138126

139127
```bash

0 commit comments

Comments
 (0)