From: Haoqun Jiang Date: Thu, 19 Aug 2021 08:37:09 +0000 (+0800) Subject: fix: don't exclude spec files from ts check X-Git-Tag: v3.0.0-alpha.3~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62a70a52118f27adfc4578483efbf08e6a91af34;p=thirdparty%2Fvuejs%2Fcreate-vue.git fix: don't exclude spec files from ts check As https://github.com/cypress-io/cypress/issues/17480 is resolved --- diff --git a/template/base/jsconfig.json b/template/base/jsconfig.json index 6f98acfa..d02eb051 100644 --- a/template/base/jsconfig.json +++ b/template/base/jsconfig.json @@ -16,6 +16,5 @@ "lib": ["esnext", "dom", "dom.iterable", "scripthost"], "skipLibCheck": true }, - "include": ["vite.config.*", "vite-env.d.ts", "src/**/*", "src/**/*.vue"], - "exclude": ["src/**/__tests__/**"] + "include": ["vite.config.*", "vite-env.d.ts", "src/**/*", "src/**/*.vue"] }