[gulp-nodemon] Adding args, nodeArgs, scriptPosition to Options (#23096)

This commit is contained in:
Kurt Preston
2018-01-29 14:06:10 -06:00
committed by Sheetal Nandi
parent 204f9d15c7
commit 3c02bc73f8
2 changed files with 5 additions and 0 deletions

View File

@@ -29,6 +29,8 @@ nodemon({
});
return tasks
}
, nodeArgs: ['--trace-warnings']
, args: ['-t']
});

View File

@@ -69,6 +69,9 @@ declare namespace nodemon {
execMap?: { [key: string]: string | boolean | number; };
events?: { [key: string]: string; };
restartable?: string;
args?: string[];
nodeArgs?: string[];
scriptPosition?: number;
}
interface EventEmitter extends NodeJS.EventEmitter {