Install typescript and tslint globally, if you haven't aready.
npm install -g typescript tslint
Local dependencies:
npm install
Compile TypeScript to JavaScript.
tsc
Executing this in the application's root folder will use all settings from tsconfig.json
.
Run the application.
node dist/app.js
npm test