I would appreciate it if the tsc --watch
option could be modified to only compile files when necessary, similar to how the make utility operates by checking time stamps of .js and .ts files.
While not a major issue, I am using TypeScript with a program that monitors changes in .js files (specifically the Azure Functions CLI host). Currently, running this program alongside tsc --watch
results in unnecessary reloads of all files after compilation.
To work around this, I could potentially introduce a delay before running the functions host, but this solution feels like a temporary hack.
Thank you.