ts-node-dev bug demonstration of issue #57
Steps to reproduce:
npm installnpm run watch-buggycurl http://localhost:11223/request--> prints out "BOOM1"- Edit
src/app.tsand changeBOOM1toBOOM2, save --> server restarts curl http://localhost:11223/request--> still prints out "BOOM1"- Edit
src/app.tsand changeBOOM2toBOOM3, save --> server restarts curl http://localhost:11223/request--> now prints out "BOOM3"
When running with npm run watch-works it works correctly.