74910f8d70
This reverts commit 4579d02296
.
24 lines
483 B
JavaScript
24 lines
483 B
JavaScript
import { execa } from 'execa';
|
|
|
|
(async () => {
|
|
// なぜかchokidarが動かない影響で、watchされない
|
|
/*
|
|
execa('tsc-alias', ['-w', '-p', 'tsconfig.json'], {
|
|
stdout: process.stdout,
|
|
stderr: process.stderr,
|
|
});
|
|
*/
|
|
|
|
setInterval(() => {
|
|
execa('tsc-alias', ['-p', 'tsconfig.json'], {
|
|
stdout: process.stdout,
|
|
stderr: process.stderr,
|
|
});
|
|
}, 3000);
|
|
|
|
execa('tsc', ['-w', '-p', 'tsconfig.json'], {
|
|
stdout: process.stdout,
|
|
stderr: process.stderr,
|
|
});
|
|
})();
|