Basic Typescript template uses class export pattern with mocha/chai unit test framework
# Install necessary dependencies
npm install
# Auto compile .ts to .js and start watching
npm watch
# Run
npm start
# Compress to one file
npm complie # Will generate /built/js/allInOne.js
# Test
npm test
# Development Test(Auto test when save)
npm test-dev