TypeScript Less Webpack Seed

Simple application skeleton for a web app powered by TypeScript.

Install dependencies

npm install

Start app

Starts a dev-server with live-reload running at http://localhost:8080/

npm run start

Build app

Build production-ready app sources

npm run build

Code-Style

This setup uses TSLint for code-style-checking and prettier for code-formatting.

Check

npm run tslint

Fix autofixable code

npm run tslint --fix

TSLint IDE Support

Enable TSLint integration in PhpStorm to show errors in your code:
Languages & Frameworks > TypeScript > TSLint

Use alt+Enter shortcut to autofix errors.