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
Copy file name to clipboardExpand all lines: readme.md
-32
Original file line number
Diff line number
Diff line change
@@ -16,35 +16,6 @@ npm install ix
16
16
17
17
(also read about how we [package IxJS](#packaging) below)
18
18
19
-
## Usage with `@angular/cli`
20
-
21
-
First, make sure you're using `@angular/cli` v1.3.2 or greater (1.3.1 has a bug that broke tsconfig's "paths" entries).
22
-
23
-
Next, install the TypeScript-only module:
24
-
25
-
```sh
26
-
npm install @reactivex/ix-ts
27
-
```
28
-
29
-
Then, add these entries to your top-level `tsconfig.json` file:
30
-
31
-
```js
32
-
{
33
-
"compilerOptions": {
34
-
"importHelpers":true, /* <-- optional but recommended */
35
-
"noEmitHelpers":true, /* <-- optional but recommended */
36
-
"downlevelIteration":true,
37
-
"paths": {
38
-
"ix/*": ["../node_modules/@reactivex/ix-ts/*"]
39
-
},
40
-
"lib": [
41
-
"esnext.asynciterable"/* <-- in addition to any other "lib" entries you have */
42
-
]
43
-
}
44
-
}
45
-
46
-
```
47
-
48
19
## `Iterable`
49
20
50
21
The `Iterable` class a way to create and compose synchronous collections much like Arrays, Maps and Sets in JavaScript using the Array#extras style using the familiar methods you are used to like `map`, `filter`, `reduce` and more.
0 commit comments