I\'m trying to run a dev server with TypeScript and an Angular application without transpiling ts files every time. I found that I can do the running with ts-node
ts-node
Specifically for this issue I've created the tsc-watch library. you can find it on npm.
tsc-watch
Obvious use case would be:
tsc-watch server.ts --outDir ./dist --onSuccess "node ./dist/server.js"