From 587e564612604e75bf50e5559d0f0c64289532d5 Mon Sep 17 00:00:00 2001 From: BrainCrumbz Date: Mon, 17 Oct 2016 16:53:15 +0200 Subject: [PATCH] docs(readme): mention AOT, @types and webpack builds --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6bc58f9..24b4a7c 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,13 @@ A Visual Studio 2015 solution showing how to start up a project involving follow * [ASP.NET Core](https://github.com/aspnet/Home) (formerly ASP.NET 5) to serve web pages, * [Angular 2](https://angular.io/) framework for client-side Single Page Application, -* [TypeScript](http://www.typescriptlang.org/) as an alternative to JavaScript to write client code, -* [WebPack](https://webpack.github.io/) module bundler to process and build client source files, -* WebPack [Hot Module Replacement](https://webpack.github.io/docs/hot-module-replacement.html) to + - Ahead Of Time (AOT) compilation for a quicker application startup +* [TypeScript](http://www.typescriptlang.org/) 2 as an alternative to JavaScript to write client code, + - @types to include type definitions of external code +* [WebPack](https://webpack.github.io/) 2 module bundler to process and build client source files, + - WebPack [Hot Module Replacement](https://webpack.github.io/docs/hot-module-replacement.html) to re-compile and reload web page when client source code changes, + - Development, test and production builds * [Karma](https://karma-runner.github.io) test runner and [Jasmine](http://jasmine.github.io/) BDD testing library to unit test client source code.