From 9c21be990bd2b4381cafa2d158468f70564d5712 Mon Sep 17 00:00:00 2001 From: Daniel Koch Date: Thu, 3 Sep 2020 18:32:29 +0200 Subject: [PATCH] #795 Removed node_module/cypress include as tslint complained; updated dependencies --- e2e-cypress/files/package.json | 10 +++++----- e2e-cypress/files/tsconfig.json | 3 +-- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/e2e-cypress/files/package.json b/e2e-cypress/files/package.json index fee740974..479c69462 100644 --- a/e2e-cypress/files/package.json +++ b/e2e-cypress/files/package.json @@ -18,12 +18,12 @@ "rxjs": "^6.6.2" }, "devDependencies": { - "@types/node": "^14.6.0", - "cypress": "^5.0.0", + "@types/node": "^14.6.3", + "cypress": "^5.1.0", "npm-run-all": "^4.1.5", - "ts-node": "^8.10.2", - "tslint": "~6.1.3", - "typescript": "^3.9.7", + "ts-node": "^9.0.0", + "tslint": "^6.1.3", + "typescript": "^4.0.2", "typescript-tslint-plugin": "^0.5.5" } } diff --git a/e2e-cypress/files/tsconfig.json b/e2e-cypress/files/tsconfig.json index e723972b5..eb202cf5b 100644 --- a/e2e-cypress/files/tsconfig.json +++ b/e2e-cypress/files/tsconfig.json @@ -2,8 +2,7 @@ "include": [ "tests/**/*.spec.ts", "support/*.ts", - "plugins/*.ts", - "node_modules/cypress" + "plugins/*.ts" ], "compilerOptions": { "baseUrl": "./",