From 35eaf079fc9c45c67b85b884e7d2de895d621ed7 Mon Sep 17 00:00:00 2001 From: dotansimha Date: Tue, 24 Jan 2017 09:35:04 +0200 Subject: [PATCH] Step 1.4: Updated TypeScript config file --- tsconfig.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 2e450f9f1..6cd67040e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,13 +14,15 @@ "target": "es5" }, "include": [ - "src/**/*.ts" + "src/**/*.ts", + "api/**/*.ts" ], "exclude": [ - "node_modules" + "node_modules", + "api/node_modules" ], "compileOnSave": false, "atom": { "rewriteTsconfig": false } -} \ No newline at end of file +}