Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ CLI for Angular applications based on the [ember-cli](http://www.ember-cli.com/)
## Note

The CLI is now in Release Candidate (RC).
If you are updating from a beta version, check out our [RC.0 Update Guide]
(https://github.com/angular/angular-cli/wiki/stories-rc.0-update).
If you are updating from a beta version, check out our [RC Update Guide]
(https://github.com/angular/angular-cli/wiki/stories-rc-update).

If you wish to collaborate, check out [our issue list](https://github.com/angular/angular-cli/issues).

Expand Down
2 changes: 1 addition & 1 deletion docs/documentation/stories.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Stories describing how to do more with the CLI

- [RC.0 Update](stories/rc.0-update)
- [RC Update](stories/rc-update)
- [Asset Configuration](stories/asset-configuration)
- [Autocompletion](stories/autocompletion)
- [CSS Preprocessors](stories/css-preprocessors)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Angular CLI RC.0 migration guide
# Angular CLI RC migration guide

In this migration guide we'll be looking at some of the major changes to CLI projects in the
last two months.
Expand All @@ -19,7 +19,7 @@ The new [Stories](https://github.com/angular/angular-cli/wiki/stories) section c
scenarios, so be sure to have a look!

Below are the changes between a project generated two months ago, with `1.0.0-beta.24` and
a `1.0.0-rc.0` project.
a `1.0.0-rc.1` project.
If you kept your project up to date you might have a lot of these already.

You can find more details about changes between versions in [CHANGELOG.md](https://github.com/angular/angular-cli/blob/master/CHANGELOG.md).
Expand Down Expand Up @@ -272,8 +272,10 @@ There is an additional root-level `tsconfig.json` that is used for IDE integrati
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"lib": [
"es2016"
"es2016",
"dom"
]
}
}
Expand Down Expand Up @@ -455,5 +457,3 @@ Add these new rules:
```

Update `no-inferrable-types` to `"no-inferrable-types": [true, "ignore-params"]`.