microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a710be4a437129eacb9c7ecc523bee1c2889e1fc

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

eng/scripts/watch.js

7lines · modecode

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