diff --git a/aio/content/guide/quickstart.md b/aio/content/guide/quickstart.md
index 87c6db6fd5..d3fb4f3070 100644
--- a/aio/content/guide/quickstart.md
+++ b/aio/content/guide/quickstart.md
@@ -206,14 +206,17 @@ Any files outside of this folder are meant to support building your app.
environment.prod.ts
environment.ts
+ browserslist
favicon.ico
index.html
+ karma.conf.js
main.ts
polyfills.ts
styles.css
test.ts
tsconfig.app.json
tsconfig.spec.json
+ tslint.json
@@ -297,6 +300,18 @@ Any files outside of this folder are meant to support building your app.
+
+
+
+ `browserslist`
+
+ |
+
+
+ A configuration file to share [target browsers](https://github.com/browserslist/browserslist) between different front-end tools.
+
+ |
+
@@ -325,6 +340,19 @@ Any files outside of this folder are meant to support building your app.
|
+
+
+
+ `karma.conf.js`
+
+ |
+
+
+ Unit test configuration for the [Karma test runner](https://karma-runner.github.io),
+ used when running `ng test`.
+
+ |
+
@@ -395,6 +423,20 @@ Any files outside of this folder are meant to support building your app.
|
+
+
+
+ `tslint.json`
+
+ |
+
+
+ Additional Linting configuration for [TSLint](https://palantir.github.io/tslint/) together with
+ [Codelyzer](http://codelyzer.com/), used when running `ng lint`.
+ Linting helps keep your code style consistent.
+
+ |
+
### The root folder
@@ -409,18 +451,23 @@ These files go in the root folder next to `src/`.
e2e
-
app.e2e-spec.ts
-
app.po.ts
+
src
+
+
app.e2e-spec.ts
+
app.po.ts
+
tsconfig.e2e.json
+
protractor.conf.js
node_modules/...
src/...
-
.angular-cli.json
+
.editorconfig
.gitignore
-
karma.conf.js
+
angular.json
package.json
-
protractor.conf.js
README.md
tsconfig.json
tslint.json
@@ -473,21 +520,6 @@ These files go in the root folder next to `src/`.
`package.json` inside of it.
-
-
-
- `.angular-cli.json`
-
- |
-
-
- Configuration for Angular CLI.
- In this file you can set several defaults and also configure what files are included
- when your project is built.
- Check out the official documentation if you want to know more.
-
- |
-
@@ -518,13 +550,15 @@ These files go in the root folder next to `src/`.
|
- `karma.conf.js`
+ `angular.json`
|
- Unit test configuration for the [Karma test runner](https://karma-runner.github.io),
- used when running `ng test`.
+ Configuration for Angular CLI.
+ In this file you can set several defaults and also configure what files are included
+ when your project is built.
+ Check out the official documentation if you want to know more.
|