ci(local dev): fix test.sh

This commit is contained in:
Alex Eagle 2016-06-16 15:46:08 -07:00
parent 45549cda61
commit 6c389ed32f
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ export class TscWatch {
}
watch() {
var args = [TSC, '--project', this.tsconfig];
var args = [TSC, '--emitDecoratorMetadata', '--project', this.tsconfig];
if (!this.runOnce) args.push('--watch');
var tsc =
this.runCmd(args, {}, (d) => this.consumeLine(d, false), (d) => this.consumeLine(d, true));