Initial Typescript repository with Node.js so that you don't have to set up typescript repository by yourself.
# Install all dependencies
$ npm install
# Run the initial application, you should get "Hello world" as output
$ npm run start
# Build the application using Typescript compiler to dist/ folder
$ npm run build
# Build the test using Typescript compiler to temp/ folder, and run mocha tests
$ npm run test
# Lint the application using TSLint
$ npm run lint