From a66425294ccebb2d120b190a536b779e9e84d6b3 Mon Sep 17 00:00:00 2001 From: Braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Sun, 28 Nov 2021 12:13:58 +0100 Subject: [PATCH] update: exclude cypress dir from build Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com> --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index fff757a6..dcb23f18 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -33,11 +33,12 @@ { "transform": "typescript-transform-paths", "afterDeclarations": true } ] }, - "include": ["src", "cypress/**/*.spec.ts"], + "include": ["src"], "exclude": [ "node_modules", "build", "dist", - "examples" + "examples", + "cypress" ] }