How to run this project locally
- Install node and npm over here https://nodejs.org/en/download/ and https://www.npmjs.com/package/npm
- Visit http://www.developerhandbook.com/typescript/writing-angularjs-1-x-with-typescript/ and read the full "how to"
- Install bower (npm install bower --global)
- Run
bower install(it will take configuration from bower.json file) - Here in the project I'm not using "tsd". Use typings insted. https://github.com/typings/typings
- In my case I've run typings with dt as a source and saved it globally (typings install dt~mocha --global --save)
- Run
typings install - I build all *.ts into one under build directory and enable mapping to debug it through web tools
- Install http-server running command
npm install -g http-server - Run
http-server -o --corsin top folder of the project - Open http://localhost:8080 in your browser