I am using webpack 2, and it will tell me if there are compile issues with my typescript code. However, I have not figured out a way to run tslint through it and have it run
If you are using TypeScript, then you can probably use tsc -w to watch the changes.
tsc -w
"scripts": { "start": "tsc -w", }