From 79f198a95a77c7632f4e1f8d383e342f17c7caad Mon Sep 17 00:00:00 2001 From: ras0q Date: Wed, 31 May 2023 14:24:10 +0900 Subject: [PATCH] :thinking: disable sourceMap in e2e ref: https://github.com/cypress-io/cypress/issues/26203 --- tests/e2e/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/e2e/tsconfig.json b/tests/e2e/tsconfig.json index 9822b3880..4f7db3fb5 100644 --- a/tests/e2e/tsconfig.json +++ b/tests/e2e/tsconfig.json @@ -1,7 +1,8 @@ { "extends": "../../tsconfig.json", "compilerOptions": { - "lib": ["esnext", "dom", "dom.iterable"] + "lib": ["esnext", "dom", "dom.iterable"], + "sourceMap": false // FIXME: https://github.com/cypress-io/cypress/issues/26203 }, "include": ["./**/*.ts"] }