From c5f1070768da3999b429befdb1fe96be561eeb28 Mon Sep 17 00:00:00 2001 From: Mihail Burduja Date: Sun, 27 Sep 2015 21:52:48 +0300 Subject: [PATCH] Updated tsconfig.json When "src/**/*.ts" is inside files it will throw an error that No file found at "src/**/*.ts". --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b7d6556..f3fbc90 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,8 +9,11 @@ "noLib": false, "emitDecoratorMetadata": true }, + "filesGlob": [ + "src/**/*.ts" + ], "files": [ - "src/**/*.ts", + "src/app.ts", "typings/angular2/angular2.d.ts" ] }