I’m trying to run a dev server with TypeScript and an Angular application without transpiling ts files every time.
What I found is that I can run .ts
files with ts-node
but I want also to watch .ts
files and reload my app/server. An example of this is the command gulp watch
.
Thank you in advance!!