Skip to content
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

Merged
merged 3 commits into from
Apr 7, 2017

Conversation

beatrizRG
Copy link
Collaborator

Found different issues during step by step guide execution.

  1. Readme.md updated with the new steps ( remove @types/core-js and added some missing information)
  2. Updated config files in order to be consistent to the changes done in the readme.md file.
  3. Added a new image displaying a new warning found and how to avoid it.

"noImplicitAny": false,
"sourceMap": true,
- "noLib": false,
"suppressImplicitAnyIndexErrors": true
Copy link
Member

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"]

@@ -191,13 +209,10 @@ module.exports = {
"declaration": false,
"noImplicitAny": false,
"sourceMap": true,
"noLib": false,
- "suppressImplicitAnyIndexErrors": true
Copy link
Member

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


"suppressImplicitAnyIndexErrors": true,
"experimentalDecorators": true,
"lib": ["dom", "es2015"] ,
Copy link
Member

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

@nasdan
Copy link
Member

nasdan commented Apr 6, 2017

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.
Copy link
Member

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

Copy link
Member

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"
+ ]

@beatrizRG
Copy link
Collaborator Author

I have included the changes that you have commented.
Root readme changes. Update local readme.
Update tsconfig file.

@beatrizRG beatrizRG closed this Apr 6, 2017
@nasdan
Copy link
Member

nasdan commented Apr 7, 2017

I think its ready to merge, isn't it? Did you close PR by mistake?

@nasdan nasdan reopened this Apr 7, 2017
@nasdan nasdan merged commit d4c4433 into Lemoncode:master Apr 7, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants