I'm working in Angular 2 and if I have a compiler error when I do an npm start I see it right away. The problem I'm running into is when I am doing live code edits and I introduce a an error. I'm not seeing any compiler errors in the lite-server output so I have to stop and do another npm start to figure out what's wrong.
Is this just the way things are or is there a way to see errors when working this way?
[Update]
The scripts section of my package.json
"scripts": {
"start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ",
"lite": "lite-server",
"postinstall": "typings install",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings"
},