From 8bbd1380ca817064edf134e5f7920c4dd2fb38ad Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Wed, 2 Mar 2016 13:42:12 -0600 Subject: [PATCH] chore(): use exclude in tsconfig Otherwise not all source files are typechecked by IDEs (tests, demos, etc.) --- tsconfig.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 7e3ef0b0a9..f4ab03bd64 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,8 +7,10 @@ "declaration": true, "outDir": "dist" }, - "files": [ - "ionic/index.ts", + "exclude": [ + "node_modules", + "scripts", + "typings/main", "typings/main.d.ts" ], "compileOnSave" : false,