i'm using zig (version 0.14.0-dev.591+1c35e73b6) for a web assembly project with typescript and i'd like to run tsc whenever any .ts file changes in src/web. is this possible?
i have a bundle_step which builds wasm and installs some files to static/. it also calls npm run build which converts my .ts files to .js and installs them to static/ too.
so i thought maybe i needed to call bundle_step.addWatchInput() in build.zig with each of my .ts files. but doing that and editing a .ts file doesn't trigger a rebuild with zig build --watch