This boilerplate combines:
- run npm start to build and start webpack-dev-server
- open http://localhost:3333/
- npm run build for single build
- npm run watch for incremental builds on every file change
- npm start to build and start webpack-dev-server
- npm test - single run unit tests in PhantomJS
- npm run test-debug - to run repeated unit tests in PhantomJS after every file change
- npm run test-browser- single run unit tests in Chrome
- npm run test-browser-debug - to run repeated unit tests after every file change in Chrome with debug option
- After browser is opened click on "DEBUG" button in top right corner
- Hit F12 to debug
###Visual Studio Code integration ####Show tslint errors only in VS Code
- Hit Ctrl + P
- Run "task tslint-watch"
####Show webpack errors in VS Code
- Hit Ctrl + P
- Run "task webpack-watch"
####Kill running task
- Hit Ctrl + shift + P
- Run "Tasks: Terminate Running Task"