From 71e0f8959497e801bd498c1a293666ad28375c84 Mon Sep 17 00:00:00 2001 From: vsavkin Date: Fri, 26 Jun 2015 15:58:31 -0700 Subject: [PATCH] chore: updated tsconfig to ignore test and dist --- tsconfig.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 22b58e5456..28f520ca1f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,12 @@ "outDir": "dist/js/cjs" }, "filesGlob": [ - "./**/*.ts", - "!./node_modules/**/*.ts" + "./src/**/*.ts", + "./tools/**/*.ts", + "!./node_modules/**", + "!./modules_dart/**", + "!./packages/**", + "!./dist/**", + "!./temp/**" ] }