From 055ff426dc5b0128deccdd468d4b57308f521acf Mon Sep 17 00:00:00 2001 From: Brian Miller Date: Wed, 21 Nov 2018 16:48:58 -0500 Subject: [PATCH] Excludes /functions dir from prerender builds The npm run build:all will fail if the /functions directory exist when deploying. This will exclude that directory for building and deploying the site only. --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index ef44e286..050ea72a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,4 +17,7 @@ "dom" ] } + "exclude": [ + "functions" + ] }