From 5172efb56b3992b23b905169ce16c74cf880932f Mon Sep 17 00:00:00 2001 From: Feodora Reis Date: Sun, 5 Mar 2023 15:41:19 +0100 Subject: [PATCH] fix jasmine & cypress types conflict https://github.com/cypress-io/cypress/issues/7552 --- cypress/tsconfig.json | 3 ++- tsconfig.json | 6 +++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/cypress/tsconfig.json b/cypress/tsconfig.json index 79d78d7..e7094d5 100644 --- a/cypress/tsconfig.json +++ b/cypress/tsconfig.json @@ -4,5 +4,6 @@ "compilerOptions": { "sourceMap": false, "types": ["cypress"] - } + }, + "exclude": [] } diff --git a/tsconfig.json b/tsconfig.json index ed966d4..73306ef 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -29,5 +29,9 @@ "strictInjectionParameters": true, "strictInputAccessModifiers": true, "strictTemplates": true - } + }, + "exclude": [ + "cypress", + "cypress.config.ts" + ] }