From bd786514d82665f218fbef3450d3d3d5ac65a875 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Fri, 3 Jun 2022 10:53:21 +0800 Subject: [PATCH] fix: unlike Vitest, Cypress CT runs in full DOM environment, so no need to empty the `lib` option --- template/tsconfig/cypress-ct/tsconfig.cypress-ct.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 } } -- 2.39.5