docs: update universal project structure (#29332)

In version 8 the project structure is slightly different

PR Close #29332
This commit is contained in:
Alan 2019-03-15 15:34:56 +01:00 committed by Matias Niemelä
parent dfb220ea6b
commit bf2db12fc9
1 changed files with 3 additions and 3 deletions

View File

@ -44,14 +44,14 @@ src/
index.html <i>app web page</i> index.html <i>app web page</i>
main.ts <i>bootstrapper for client app</i> main.ts <i>bootstrapper for client app</i>
main.server.ts <i>* bootstrapper for server app</i> main.server.ts <i>* bootstrapper for server app</i>
tsconfig.app.json <i>TypeScript client configuration</i>
tsconfig.server.json <i>* TypeScript server configuration</i>
tsconfig.spec.json <i>TypeScript spec configuration</i>
style.css <i>styles for the app</i> style.css <i>styles for the app</i>
app/ ... <i>application code</i> app/ ... <i>application code</i>
app.server.module.ts <i>* server-side application module</i> app.server.module.ts <i>* server-side application module</i>
server.ts <i>* express web server</i> server.ts <i>* express web server</i>
tsconfig.json <i>TypeScript client configuration</i> tsconfig.json <i>TypeScript client configuration</i>
tsconfig.app.json <i>TypeScript client configuration</i>
tsconfig.server.json <i>* TypeScript server configuration</i>
tsconfig.spec.json <i>TypeScript spec configuration</i>
package.json <i>npm configuration</i> package.json <i>npm configuration</i>
webpack.server.config.js <i>* webpack server configuration</i> webpack.server.config.js <i>* webpack server configuration</i>
</code-example> </code-example>