From c62997fa025dc27e0e3e105b10fe9a10c3a841a4 Mon Sep 17 00:00:00 2001 From: "Simonek, Jan" Date: Tue, 16 Aug 2022 01:49:41 +0200 Subject: [PATCH] Attempt to fix error "Unknown file extension .ts" in e2e tests https://github.com/cypress-io/cypress/issues/22071 --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 9f861e4..64a88e0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,8 @@ "compilerOptions": { "target": "es5", "lib": ["es5", "dom"], - "types": ["cypress", "node"] + "types": ["cypress", "node"], + "baseUrl": ".." }, "include": ["**/*.ts"] }