| 1 | import { repoRoot } from "./helpers.js"; |
| 2 | import { spawn } from "child_process"; |
| 3 | import { resolve } from "path"; |
| 4 | |
| 5 | const tsc = resolve(repoRoot, "packages/adl/node_modules/.bin/tsc"); |
| 6 | const args = ["--build", "--watch"]; |
| 7 | spawn(tsc, args, { cwd: repoRoot, shell: true, stdio: "inherit" }); |
| 8 | |