Skip to content

Commit

Permalink
fix: exclude test files from generated types
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasKruckenberg committed Apr 28, 2021
1 parent e96b7e3 commit a86d29c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
},
"include": [
"src/**/*"
]
],
"exclude": ["**/__tests__/**"]
}
3 changes: 2 additions & 1 deletion packages/rollup/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
],
"include": [
"src/**/*.ts"
]
],
"exclude": ["**/__tests__/**"]
}
3 changes: 2 additions & 1 deletion packages/vite/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
],
"include": [
"src/**/*"
]
],
"exclude": ["**/__tests__/**"]
}

0 comments on commit a86d29c

Please sign in to comment.