Skip to content

Commit 5f66f0f

Browse files
committed
fix: should exclude unit tests from type checking
1. there's a bug in `@cypress/vue` at the moment cypress-io/cypress#17480 2. no need to fail the whole build process only because of a type error in a spec file. We may add a specific command to typechecking the spec files later
1 parent 7974b2e commit 5f66f0f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

template/config/base/jsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,8 @@
2323

2424
"src/**/*",
2525
"src/**/*.vue"
26+
],
27+
"exclude": [
28+
"src/**/__tests__/**"
2629
]
2730
}

0 commit comments

Comments
 (0)