- NodeJS
- NPM (comes bundled with NodeJS)
- Gulp
npm install gulp -g- Domer (optional, if you don't use Domer for HTML templating)
npm install domer -gThis compiles the application with module type commonjs
gulp buildThis browserifies the compiled ts code into one app.js file and at the same time, copies the non js code(css, html) to the bundle folder.
gulp bundleruns a webserver on bundle folder.
gulp runYou can run any task with by adding --debug flag. This will produce a build with sourcemaps.
gulp run --debug