From 089c69d013e69fa0ad7bf99453187281a2b2bc1d Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Tue, 24 Dec 2024 23:37:05 +0800 Subject: [PATCH] chore: move jsconfig.json location for cypress e2e This is a follow up of https://github.com/vuejs/create-vue/commit/5027f2b5c49fc4b4f8c467b72025f52c9603cbb2 but of less importance, as I don't expect many tools to rely on this file's location. --- template/config/cypress/cypress/{e2e => }/jsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename template/config/cypress/cypress/{e2e => }/jsconfig.json (54%) diff --git a/template/config/cypress/cypress/e2e/jsconfig.json b/template/config/cypress/cypress/jsconfig.json similarity index 54% rename from template/config/cypress/cypress/e2e/jsconfig.json rename to template/config/cypress/cypress/jsconfig.json index c790a70d..ab367841 100644 --- a/template/config/cypress/cypress/e2e/jsconfig.json +++ b/template/config/cypress/cypress/jsconfig.json @@ -4,5 +4,6 @@ "lib": ["es5", "dom"], "types": ["cypress"] }, - "include": ["./**/*", "../support/**/*"] + "include": ["./e2e/**/*", "./support/**/*"], + "exclude": ["./support/component.*"] }