From dc61a543cb101cbb7fa52b39cc1765ebbc90581c Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Mon, 14 Oct 2024 17:18:09 +0800 Subject: [PATCH] docs: fix tsconfig.json include paths for type-checked example --- examples/type-checked/cypress/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/type-checked/cypress/tsconfig.json b/examples/type-checked/cypress/tsconfig.json index c94f1d4..a13c5d6 100644 --- a/examples/type-checked/cypress/tsconfig.json +++ b/examples/type-checked/cypress/tsconfig.json @@ -1,6 +1,6 @@ { "extends": "@vue/tsconfig/tsconfig.dom.json", - "include": ["./**/*", "../support/**/*"], + "include": ["./e2e/**/*", "./support/**/*"], "compilerOptions": { "isolatedModules": false, "types": ["cypress"]