]> git.ipfire.org Git - thirdparty/vuejs/create-vue.git/commitdiff
fix: clean up Cypress tsconfigs
authorHaoqun Jiang <haoqunjiang@gmail.com>
Fri, 3 Jun 2022 08:19:21 +0000 (16:19 +0800)
committerHaoqun Jiang <haoqunjiang@gmail.com>
Fri, 3 Jun 2022 08:41:17 +0000 (16:41 +0800)
playground
template/config/cypress/cypress/e2e/jsconfig.json
template/tsconfig/cypress/cypress/e2e/tsconfig.json [moved from template/tsconfig/cypress/cypress/tsconfig.json with 76% similarity]
template/tsconfig/cypress/cypress/plugins/tsconfig.json [deleted file]

index ee46c9004e0f8e03bee3b2239efb364cb75f5ee6..f102fa46a9d6b48483c2c5986d003d3d22052980 160000 (submodule)
@@ -1 +1 @@
-Subproject commit ee46c9004e0f8e03bee3b2239efb364cb75f5ee6
+Subproject commit f102fa46a9d6b48483c2c5986d003d3d22052980
index c33dbde15f8ce4a75df21e7149f0f7d4737d01c3..c790a70d6eda522396f4e19c62f9500e190b243c 100644 (file)
@@ -4,5 +4,5 @@
     "lib": ["es5", "dom"],
     "types": ["cypress"]
   },
-  "include": ["./**/*", "../support/e2e.*"]
+  "include": ["./**/*", "../support/**/*"]
 }
similarity index 76%
rename from template/tsconfig/cypress/cypress/tsconfig.json
rename to template/tsconfig/cypress/cypress/e2e/tsconfig.json
index a2dbf9e3f93fc354df8aac35a2a7078615867c6b..be213aefc0a6917f8bae6af8e519956d14dae22e 100644 (file)
@@ -1,6 +1,6 @@
 {
   "extends": "@vue/tsconfig/tsconfig.web.json",
-  "include": ["./integration/**/*", "./support/**/*"],
+  "include": ["./**/*", "../support/**/*"],
   "compilerOptions": {
     "isolatedModules": false,
     "target": "es5",
diff --git a/template/tsconfig/cypress/cypress/plugins/tsconfig.json b/template/tsconfig/cypress/cypress/plugins/tsconfig.json
deleted file mode 100644 (file)
index b5aedd5..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "extends": "@vue/tsconfig/tsconfig.node.json",
-  "include": ["./**/*"],
-  "compilerOptions": {
-    "module": "CommonJS",
-    "preserveValueImports": false,
-    "types": ["node", "cypress/types/cypress"]
-  }
-}