Spawns a watch process for each tsconfig.json file in the search root. The process is:
cd '${tsconfDir}' && tsc --project '${p}' --pretty false --preserveWatchOutput --watch
$ npm install -g tsc-multi-watch`
$ tsc_multi_watch --root="$(pwd)" # --root defaults to $PWD, so this is redundant
import tscmw from 'tsc-multi-watch';
tscmw(opts, (err, v) => {
// v shows which paths are being watched
});
if (String(item).match(/^tsconfig.*\.json$/)) {
tsConfigPaths.push(fullPath);
}