Skip to content

Commit

Permalink
chore(tsconfig): ignore cypress files
Browse files Browse the repository at this point in the history
  • Loading branch information
samtjo committed Jan 11, 2022
1 parent 45fcbb4 commit 5123cd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tsconfig-build.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"extends": "./tsconfig.json",
"exclude": ["src/**/*.stories.js", "src/**/*.spec.*"]
"exclude": ["src/**/*.stories.*", "src/**/*.spec.*", "src/**/*.test.*"]
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
"target": "es6"
},
"include": ["src/**/*"],
"exclude": ["src/**/*.stories.js"]
"exclude": ["src/**/*.stories.js", "src/**/*.test.js"]
}

0 comments on commit 5123cd0

Please sign in to comment.