From 68660b9166ab838851e64faa6e8af87c346f4daa Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Mon, 1 Jun 2026 22:34:28 +0000 Subject: [PATCH] PR-752266: Fix TypeScript 6 deprecation errors in Cypress E2E tests. --- cypress/tsconfig.json | 11 +++++++++++ tsconfig.json | 1 + 2 files changed, 12 insertions(+) create mode 100644 cypress/tsconfig.json diff --git a/cypress/tsconfig.json b/cypress/tsconfig.json new file mode 100644 index 0000000..22edb84 --- /dev/null +++ b/cypress/tsconfig.json @@ -0,0 +1,11 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "rootDir": ".", + "types": ["cypress", "node"] + }, + "include": [ + "**/*.ts", + "**/*.tsx" + ] +} diff --git a/tsconfig.json b/tsconfig.json index 5765297..1f51f8b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -30,6 +30,7 @@ "outDir": "build", "skipLibCheck": true, "noImplicitAny": false, + "ignoreDeprecations": "6.0", "paths": { "@components/*": ["src/frontend/components/*"], "@components": ["src/frontend/components"],