deno run --watch ... dev.tsdeno run --watch ... dev.ts, it uses deno's native watch feature and restarts the server when a file changes.types.tstypes.ts I need to run a different generation script, something like deno ./generate.ts ./libs/types.ts ./libs/types.gen.tsdeno ./generate.ts ./libs/types.ts ./libs/types.gen.tsdev.tsdev.ts file, it loops forever, since the watcher triggers when the generated file is created, which causes the watcher to trigger generation again.Deno.watchFsDeno.watchFs with just specifically the ./libs/types.ts./libs/types.ts file, but it seems that deno run --watchdeno run --watch restarts the process before that event has a chance to run.--watch-exclude--watch-exclude doesn't work because then my project doesn't restart when the generated file is created. deno run --watch=./libs/types.tsdeno run --watch=./libs/types.ts, but this is really bad dx, needing to run a separate background task.--watch--watch, i could chose to only run the generation script on specific filenames changingJoin the Discord to ask follow-up questions and connect with the community