You can modify the generated build tasks to remove the notification that is in aurelia_project / tasks. Just change any gulp -plumber calls by omitting the configured errorHandler:
return eventStream.merge(dts, src)
.pipe(plumber())
.pipe(sourcemaps.init())
.pipe(ts(typescriptCompiler))
.pipe(build.bundle());
source
share