From: cexbrayat Date: Fri, 24 May 2024 14:28:03 +0000 (+0200) Subject: fix(cypress): remove es5 from tsconfig X-Git-Tag: v3.10.4~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F528%2Fhead;p=thirdparty%2Fvuejs%2Fcreate-vue.git fix(cypress): remove es5 from tsconfig It looks like this is no longer necessary and allows developers to use a more modern syntax in the spec files. --- diff --git a/template/tsconfig/cypress/cypress/e2e/tsconfig.json b/template/tsconfig/cypress/cypress/e2e/tsconfig.json index 37748feb..c94f1d49 100644 --- a/template/tsconfig/cypress/cypress/e2e/tsconfig.json +++ b/template/tsconfig/cypress/cypress/e2e/tsconfig.json @@ -3,8 +3,6 @@ "include": ["./**/*", "../support/**/*"], "compilerOptions": { "isolatedModules": false, - "target": "es5", - "lib": ["es5", "dom"], "types": ["cypress"] } }