]> git.ipfire.org Git - thirdparty/vuejs/create-vue.git/commitdiff
chore: move jsconfig.json location for cypress e2e
authorHaoqun Jiang <haoqunjiang@gmail.com>
Tue, 24 Dec 2024 15:37:05 +0000 (23:37 +0800)
committerHaoqun Jiang <haoqunjiang@gmail.com>
Tue, 24 Dec 2024 15:37:05 +0000 (23:37 +0800)
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/jsconfig.json [moved from template/config/cypress/cypress/e2e/jsconfig.json with 54% similarity]

similarity index 54%
rename from template/config/cypress/cypress/e2e/jsconfig.json
rename to template/config/cypress/cypress/jsconfig.json
index c790a70d6eda522396f4e19c62f9500e190b243c..ab36784122f2f1117bd46266209adca04421e94f 100644 (file)
@@ -4,5 +4,6 @@
     "lib": ["es5", "dom"],
     "types": ["cypress"]
   },
-  "include": ["./**/*", "../support/**/*"]
+  "include": ["./e2e/**/*", "./support/**/*"],
+  "exclude": ["./support/component.*"]
 }