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

docs(aio): Update quickstart file tree to match Angular CLI V6 #23367

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
80 changes: 57 additions & 23 deletions aio/content/guide/quickstart.md
Expand Up @@ -206,14 +206,17 @@ Any files outside of this folder are meant to support building your app.
<div class="file">environment.prod.ts</div>
<div class="file">environment.ts</div>
</div>
<div class="file">browserslist</div>
<div class="file">favicon.ico</div>
<div class="file">index.html</div>
<div class="file">karma.conf.js</div>
<div class="file">main.ts</div>
<div class="file">polyfills.ts</div>
<div class="file">styles.css</div>
<div class="file">test.ts</div>
<div class="file">tsconfig.app.json</div>
<div class="file">tsconfig.spec.json</div>
<div class="file">tslint.json</div>
</div>
</div>

Expand Down Expand Up @@ -297,6 +300,18 @@ Any files outside of this folder are meant to support building your app.

</td>
</tr>
<tr>
<td>

`browserslist`

</td>
<td>

A configuration file to share [target browsers](https://github.com/browserslist/browserslist) between different front-end tools.

</td>
</tr>
<tr>
<td>

Expand Down Expand Up @@ -325,6 +340,19 @@ Any files outside of this folder are meant to support building your app.

</td>
</tr>
<tr>
<td>

`karma.conf.js`

</td>
<td>

Unit test configuration for the [Karma test runner](https://karma-runner.github.io),
used when running `ng test`.

</td>
</tr>
<tr>
<td>

Expand Down Expand Up @@ -395,6 +423,20 @@ Any files outside of this folder are meant to support building your app.

</td>
</tr>
<tr>
<td>

`tslint.json`

</td>
<td>

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.

</td>
</tr>
</table>

### The root folder
Expand All @@ -409,18 +451,23 @@ These files go in the root folder next to `src/`.
<div class='children'>
<div class="file">e2e</div>
<div class='children'>
<div class="file">app.e2e-spec.ts</div>
<div class="file">app.po.ts</div>
<div class="file">src</div>
<div class='children'>
<div class="file">app.e2e-spec.ts</div>
<div class="file">app.po.ts</div>
</div>
<div class="file">tsconfig.e2e.json</div>
<div class="file">protractor.conf.js</div>
</div>
<div class="file">node_modules/...</div>
<div class="file">src/...</div>
<div class="file">.angular-cli.json</div>
<div class='children'>
<div class="file">karma.conf.js</div>
</div>
<div class="file">.editorconfig</div>
<div class="file">.gitignore</div>
<div class="file">karma.conf.js</div>
<div class="file">angular.json</div>
<div class="file">package.json</div>
<div class="file">protractor.conf.js</div>
<div class="file">README.md</div>
<div class="file">tsconfig.json</div>
<div class="file">tslint.json</div>
Expand Down Expand Up @@ -473,21 +520,6 @@ These files go in the root folder next to `src/`.
`package.json` inside of it.
</td>
</tr>
<tr>
<td>

`.angular-cli.json`

</td>
<td>

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.

</td>
</tr>
<tr>
<td>

Expand Down Expand Up @@ -518,13 +550,15 @@ These files go in the root folder next to `src/`.
<tr>
<td>

`karma.conf.js`
`angular.json`

</td>
<td>

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.

</td>
</tr>
Expand Down