From ce8b75c652a15753220a0d4d40229b432893ad99 Mon Sep 17 00:00:00 2001 From: Hazelnoot Date: Mon, 6 Oct 2025 00:01:16 -0400 Subject: [PATCH] modernize cypress to target the same ES and TS standards as the rest of the app --- cypress/tsconfig.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cypress/tsconfig.json b/cypress/tsconfig.json index fb434b9a41..d121418aae 100644 --- a/cypress/tsconfig.json +++ b/cypress/tsconfig.json @@ -1,10 +1,8 @@ { + "$schema": "https://json.schemastore.org/tsconfig", + "extends": "../packages/shared/tsconfig.web.json", "compilerOptions": { - "lib": ["dom", "ESNext"], - "target": "ESNext", "types": ["cypress", "node"], - "incremental": true, - "skipLibCheck": true, }, "include": ["./**/*.ts"] }