An open API service indexing awesome lists of open source software.

https://github.com/micmro/ts-webpack-boilerplate

Simple Typescript + Webpack boilerplate code, with uglify, tslint and LESS support
https://github.com/micmro/ts-webpack-boilerplate

boilerplate-template dev-server less typescript webpack

Last synced: about 1 year ago
JSON representation

Simple Typescript + Webpack boilerplate code, with uglify, tslint and LESS support

Awesome Lists containing this project

README

          

# ts-webpack-boilerplate
Simple Typescript + Webpack boilerplate code.

It supports the following out of the box:
- concatination
- uglify
- tslint
- LESS
- watch
- hot reloading
- source maps

# Setup

Just install dependencies.
```
npm install
```

# Commands

## To run the dev-server:
```
npm run serve
```
It starts on `http://localhost:8080` and automatically reloads the page for all file changes.

## To run a dev-build:
```
npm run build
```
Files are stored in `./dist`

## To run a prod build with uglification and source map:
```
npm run build-prod
```