This repository was archived by the owner on Dec 4, 2017. It is now read-only.
File tree 2 files changed +7
-7
lines changed
public/docs/ts/latest/guide
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ block includes
10
10
Having this folder helps separate app code from setup and configuration files.
11
11
You can read about moving your existing project to this structure in
12
12
[the QuickStart repo update instructions](https://github.com/angular/quickstart#updating-to-a-newer-version-of-the-quickstart-repo).
13
- * `app/` has been moved to `src/app/`
14
- * `src/ app/main.ts ` has been moved to `src/main.ts`
15
- * `index.html`, `styles.css` and `tsconfig.json` have been moved inside `src/`
13
+ * `app/main.ts ` has been moved to `src/main.ts`.
14
+ * `app/` has been moved to `src/app/`.
15
+ * `index.html`, `styles.css` and `tsconfig.json` have been moved inside `src/`.
16
16
* `systemjs.config.js` now imports `main.js` instead of `app`.
17
- * There is a new `bs-config.json` file at root to configure `lite-server` to serve `src/`
17
+ * `lite-server` configuration ( `bs-config.json`) to serve `src/`.
18
18
19
19
## NEW: Reactive Forms guide (2017-01-31)
20
20
The new [**Reactive Forms**](reactive-forms.html) guide explains how and why to build a "reactive form".
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ block qs-seed
107
107
block core-files
108
108
a#app-files
109
109
:marked
110
- Focus on the following three TypeScript (`.ts`) files in the **`/app `** folder.
110
+ Focus on the following three TypeScript (`.ts`) files in the **`/src `** folder.
111
111
112
112
.filetree
113
113
.file src
@@ -131,11 +131,11 @@ block core-files
131
131
:marked
132
132
All guides and cookbooks have _at least these core files_. Each file has a distinct purpose and evolves independently as the application grows.
133
133
134
+ Outside `src/` are files meant to support your app, like configuration files and external dependencies.
135
+
134
136
Whenever a new Typescript, HTML or CSS file is created, it should go inside the `src/` directory (unless noted otherwise).
135
137
This is the folder containing your app itself.
136
138
137
- Outside `src/` are files meant to support your app, like configuration files and external dependencies.
138
-
139
139
style td, th {vertical-align: top}
140
140
table( width ="100%" )
141
141
col( width ="20%" )
You can’t perform that action at this time.
0 commit comments