From f506d1718f151bca29392e735d95c3a5c22027c0 Mon Sep 17 00:00:00 2001 From: Martin Hochel Date: Mon, 4 Apr 2016 00:36:19 +0200 Subject: [PATCH] chore(tsc): fallback to exclude config because WS doesn't supports files --- tsconfig.json | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 6cd24d2..5d45c19 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,15 +5,13 @@ "noImplicitAny": false, "sourceMap": true, "experimentalDecorators": true, - "declaration": true + "declaration": true, + "pretty": true }, - "files": [ - "manual_typings/globals.d.ts", - "typings/browser.d.ts", - "common.ts", - "core.ts", - "testing.ts", - "platform.ts", - "test/index.ts" + "exclude": [ + "typings/main", + "typings/main.d.ts", + "playground", + "node_modules" ] }