PR-752266: Fix TypeScript 6 deprecation errors in Cypress E2E tests.

This commit is contained in:
2026-06-01 22:34:28 +00:00
parent 0ba8134095
commit 68660b9166
2 changed files with 12 additions and 0 deletions

11
cypress/tsconfig.json Normal file
View File

@@ -0,0 +1,11 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"types": ["cypress", "node"]
},
"include": [
"**/*.ts",
"**/*.tsx"
]
}

View File

@@ -30,6 +30,7 @@
"outDir": "build",
"skipLibCheck": true,
"noImplicitAny": false,
"ignoreDeprecations": "6.0",
"paths": {
"@components/*": ["src/frontend/components/*"],
"@components": ["src/frontend/components"],