From 09e1cd3b077aa505be73fdcd2f87658510e8cc34 Mon Sep 17 00:00:00 2001 From: SteveSandersonMS Date: Thu, 1 Sep 2016 13:59:28 +0100 Subject: [PATCH] TS compiler should ignore "bin" dir because, after VS publish, it might contain duplicates of the app's source files. Fixes #279. --- templates/Angular2Spa/tsconfig.json | 1 + templates/KnockoutSpa/tsconfig.json | 1 + templates/ReactReduxSpa/tsconfig.json | 1 + templates/ReactSpa/tsconfig.json | 1 + templates/WebApplicationBasic/tsconfig.json | 1 + 5 files changed, 5 insertions(+) diff --git a/templates/Angular2Spa/tsconfig.json b/templates/Angular2Spa/tsconfig.json index ef5deed..e141587 100644 --- a/templates/Angular2Spa/tsconfig.json +++ b/templates/Angular2Spa/tsconfig.json @@ -8,6 +8,7 @@ "skipDefaultLibCheck": true }, "exclude": [ + "bin", "node_modules" ] } diff --git a/templates/KnockoutSpa/tsconfig.json b/templates/KnockoutSpa/tsconfig.json index 61872e1..1404455 100644 --- a/templates/KnockoutSpa/tsconfig.json +++ b/templates/KnockoutSpa/tsconfig.json @@ -6,6 +6,7 @@ "skipDefaultLibCheck": true }, "exclude": [ + "bin", "node_modules" ] } diff --git a/templates/ReactReduxSpa/tsconfig.json b/templates/ReactReduxSpa/tsconfig.json index b6603ac..c5ae211 100644 --- a/templates/ReactReduxSpa/tsconfig.json +++ b/templates/ReactReduxSpa/tsconfig.json @@ -8,6 +8,7 @@ "skipDefaultLibCheck": true }, "exclude": [ + "bin", "node_modules" ] } diff --git a/templates/ReactSpa/tsconfig.json b/templates/ReactSpa/tsconfig.json index 39a15ea..69ed93a 100644 --- a/templates/ReactSpa/tsconfig.json +++ b/templates/ReactSpa/tsconfig.json @@ -7,6 +7,7 @@ "skipDefaultLibCheck": true }, "exclude": [ + "bin", "node_modules" ] } diff --git a/templates/WebApplicationBasic/tsconfig.json b/templates/WebApplicationBasic/tsconfig.json index 61872e1..1404455 100644 --- a/templates/WebApplicationBasic/tsconfig.json +++ b/templates/WebApplicationBasic/tsconfig.json @@ -6,6 +6,7 @@ "skipDefaultLibCheck": true }, "exclude": [ + "bin", "node_modules" ] }