Skip to content

Commit 5027f2b

Browse files
committed
fix: move tsconfig.json for cypress e2e a level up
Tools like `typescript-eslint` does not work well with this kind of `include` pattern (i.e. starting with `../`).
1 parent 05ac8ba commit 5027f2b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

template/tsconfig/cypress/cypress/e2e/tsconfig.json renamed to template/tsconfig/cypress/cypress/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "@vue/tsconfig/tsconfig.dom.json",
3-
"include": ["./**/*", "../support/**/*"],
3+
"include": ["./e2e/**/*", "./support/**/*"],
4+
"exclude": ["./support/component.*"],
45
"compilerOptions": {
56
"isolatedModules": false,
67
"types": ["cypress"]

0 commit comments

Comments
 (0)