Skip to content

Commit

Permalink
fix: move tsconfig.json for cypress e2e a level up
Browse files Browse the repository at this point in the history
Tools like `typescript-eslint` does not work well with this kind of
`include` pattern (i.e. starting with `../`).
  • Loading branch information
haoqunjiang committed Oct 14, 2024
1 parent 05ac8ba commit 5027f2b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["./**/*", "../support/**/*"],
"include": ["./e2e/**/*", "./support/**/*"],
"exclude": ["./support/component.*"],
"compilerOptions": {
"isolatedModules": false,
"types": ["cypress"]
Expand Down

0 comments on commit 5027f2b

Please sign in to comment.