From c91e0be45fe0b109571d508e774a21c323218fff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20G=C3=B6tz?= Date: Tue, 30 Jan 2024 01:49:09 +0100 Subject: [PATCH] :bug: fix: use the correct path for tsconfig presets --- frontend/cypress/e2e/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/cypress/e2e/tsconfig.json b/frontend/cypress/e2e/tsconfig.json index be213ae..37748fe 100644 --- a/frontend/cypress/e2e/tsconfig.json +++ b/frontend/cypress/e2e/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "@vue/tsconfig/tsconfig.web.json", + "extends": "@vue/tsconfig/tsconfig.dom.json", "include": ["./**/*", "../support/**/*"], "compilerOptions": { "isolatedModules": false,