From: Haoqun Jiang Date: Tue, 24 Dec 2024 15:37:05 +0000 (+0800) Subject: chore: move jsconfig.json location for cypress e2e X-Git-Tag: v3.14.0~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=089c69d013e69fa0ad7bf99453187281a2b2bc1d;p=thirdparty%2Fvuejs%2Fcreate-vue.git 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. --- 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.*"] }