When I used gulp in an Angular 1.x project, I can use gulp to view file changes and run eslint continuously. In my Angular 2 project, I use webpack and vs code, how can tslint work all the time?
I tried this, but it does not work:
"watch:lint": "npm run tslint \"src*.ts\" -- --watch",
I have not tried integrating tslint with vs code. Can the code give me constant feedback on the files I'm working on with tslint? Any information appreciated.
source
share