From bb8db1a04939e6c97b380ef347418eba21eb2cf3 Mon Sep 17 00:00:00 2001 From: Brandon Roberts Date: Fri, 13 Apr 2018 12:07:10 -0500 Subject: [PATCH] docs(aio): Update file tree to match Angular CLI V6 structure --- aio/content/guide/quickstart.md | 80 +++++++++++++++++++++++---------- 1 file changed, 57 insertions(+), 23 deletions(-) diff --git a/aio/content/guide/quickstart.md b/aio/content/guide/quickstart.md index 87c6db6fd5cbb..d3fb4f3070df0 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
+
+
karma.conf.js
+
.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.