haveno-ui/.vscode/tscwatch.sh

9 lines
253 B
Bash
Raw Permalink Normal View History

#!/bin/sh
./node_modules/.bin/tsc --watch --noEmit --project packages/main &
P1=$!
./node_modules/.bin/tsc --watch --noEmit --project packages/preload &
P2=$!
./node_modules/.bin/tsc --watch --noEmit --project packages/renderer &
P3=$!
wait $P1 $P2 $P3