Skip to content

Instantly share code, notes, and snippets.

@marcghorayeb
marcghorayeb / gulpfile.js
Created June 25, 2018 12:57
Gulp + TSC hack
let isWatching = false;
gulp.task('ts', () => {
return new Promise((resolve, reject) => {
const cmd = 'npx';
const args = ['tsc'];
if (isWatching) {
args.push('-w', '--preserveWatchOutput');
}