From 6796e470872002a249915346622d5db326f86832 Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Fri, 1 May 2015 15:34:29 +1000 Subject: [PATCH] config(tsconfig) don't include `./complete` into the compilation context otherwise they will end up with two `app.ts` files in the the compilation context --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b3e0712..d479f57 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,7 +11,8 @@ }, "filesGlob": [ "./**/*.ts", - "!./node_modules/**/*.ts" + "!./node_modules/**/*.ts", + "!./complete/**/*.ts" ], "files": [ "./app.ts",