]> git.ipfire.org Git - thirdparty/vuejs/create-vue.git/commitdiff
fix(cypress): remove es5 from tsconfig 528/head
authorcexbrayat <cedric@ninja-squad.com>
Fri, 24 May 2024 14:28:03 +0000 (16:28 +0200)
committerCédric Exbrayat <cexbrayat@users.noreply.github.com>
Sat, 1 Jun 2024 16:10:58 +0000 (18:10 +0200)
It looks like this is no longer necessary and allows developers to use a more modern syntax in the spec files.

template/tsconfig/cypress/cypress/e2e/tsconfig.json

index 37748feb7f2d4d4ae6959e38d27ad35d96b7d1d3..c94f1d49b4f69db66b59969c2b1b393e2ce8f293 100644 (file)
@@ -3,8 +3,6 @@
   "include": ["./**/*", "../support/**/*"],
   "compilerOptions": {
     "isolatedModules": false,
-    "target": "es5",
-    "lib": ["es5", "dom"],
     "types": ["cypress"]
   }
 }