-
Notifications
You must be signed in to change notification settings - Fork 67
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
Reviewed Readme.md and step by step guide. Issue #67 #84
Conversation
Updated code sample. Added image.
02 Fx/03 Angular 2/README.md
Outdated
"noImplicitAny": false, | ||
"sourceMap": true, | ||
- "noLib": false, | ||
"suppressImplicitAnyIndexErrors": true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add comma to the end of line:
you can add like:
- "suppressImplicitAnyIndexErrors": true
+ "suppressImplicitAnyIndexErrors": true,
+ "lib": ["dom", "es2015"]
02 Fx/03 Angular 2/README.md
Outdated
@@ -191,13 +209,10 @@ module.exports = { | |||
"declaration": false, | |||
"noImplicitAny": false, | |||
"sourceMap": true, | |||
"noLib": false, | |||
- "suppressImplicitAnyIndexErrors": true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this line should be looks like:
"suppressImplicitAnyIndexErrors": true,
- "lib": ["dom", "es2015"]
+ "lib": ["dom", "es2015"],
+ "experimentalDecorators":true
02 Fx/03 Angular 2/tsconfig.json
Outdated
"suppressImplicitAnyIndexErrors": true, | ||
"experimentalDecorators": true, | ||
"lib": ["dom", "es2015"] , |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove extra space before comma
Great stuff! Only some comments about tsconfig |
- Creating a service. | ||
- Displaying the component. | ||
- Creating an external HTML template and consuming it. | ||
- Install Angular 1.x libraries. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we change Summary steps
I think we have to change root Readme
@@ -306,7 +352,7 @@ npm install @types/webpack-env --save-dev | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this section, it should looks like:
"lib": ["dom", "es2015"],
- "experimentalDecorators":true
+ "experimentalDecorators":true,
+ "types": [
+ "webpack-env"
+ ]
tsconfig.json fixes.
I have included the changes that you have commented. |
I think its ready to merge, isn't it? Did you close PR by mistake? |
Found different issues during step by step guide execution.