From 308f0751cf2b589c24b7117b9e74217b22013921 Mon Sep 17 00:00:00 2001 From: Tim Donohue Date: Mon, 10 Mar 2025 14:23:05 -0500 Subject: [PATCH] Fix issues in IDEs (especially VS Code) with recognizing Cypress Typescript files. --- cypress/tsconfig.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cypress/tsconfig.json b/cypress/tsconfig.json index 51237b5e95..e7b70a29b7 100644 --- a/cypress/tsconfig.json +++ b/cypress/tsconfig.json @@ -1,10 +1,16 @@ { "extends": "../tsconfig.json", "include": [ - "**/*.ts" + "**/*.ts", + "../cypress.config.ts" ], "compilerOptions": { "sourceMap": false, + "typeRoots": [ + "../node_modules", + "../node_modules/@types", + "../src/typings.d.ts" + ], "types": [ "cypress", "cypress-axe",