From 6c389ed32f4e5d552376e3fefb9ca41563daff5d Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Thu, 16 Jun 2016 15:46:08 -0700 Subject: [PATCH] ci(local dev): fix test.sh --- tools/tsc-watch/tsc_watch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tsc-watch/tsc_watch.ts b/tools/tsc-watch/tsc_watch.ts index 7ba30f90ec..5aa79db5b4 100644 --- a/tools/tsc-watch/tsc_watch.ts +++ b/tools/tsc-watch/tsc_watch.ts @@ -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));