From 7e947ff2ca82834f92909d06191544f2a77df96d Mon Sep 17 00:00:00 2001 From: Nick Taylor Date: Wed, 6 Oct 2021 16:36:11 -0400 Subject: [PATCH] Enabled Intellisense for the Cypress API (#14970) --- cypress/jsconfig.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 cypress/jsconfig.json diff --git a/cypress/jsconfig.json b/cypress/jsconfig.json new file mode 100644 index 000000000..d49bf96c7 --- /dev/null +++ b/cypress/jsconfig.json @@ -0,0 +1,6 @@ +{ + "compilerOptions": { + "types": ["cypress"] + }, + "include": ["**/*.spec.js"] +}