From: Haoqun Jiang Date: Fri, 3 Jun 2022 02:53:21 +0000 (+0800) Subject: fix: unlike Vitest, Cypress CT runs in full DOM environment, so no need to empty... X-Git-Tag: v3.2.0~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd786514d82665f218fbef3450d3d3d5ac65a875;p=thirdparty%2Fvuejs%2Fcreate-vue.git fix: unlike Vitest, Cypress CT runs in full DOM environment, so no need to empty the `lib` option --- diff --git a/template/tsconfig/cypress-ct/tsconfig.cypress-ct.json b/template/tsconfig/cypress-ct/tsconfig.cypress-ct.json index f3aef9ab..29cbaa47 100644 --- a/template/tsconfig/cypress-ct/tsconfig.cypress-ct.json +++ b/template/tsconfig/cypress-ct/tsconfig.cypress-ct.json @@ -3,7 +3,6 @@ "include": ["env.d.ts", "src/**/*", "src/**/*.vue", "cypress/support/component.*"], "exclude": [], "compilerOptions": { - "composite": true, - "lib": [] + "composite": true } }