Skip to content

Commit

Permalink
fix: exclude pattern for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rexxars committed Sep 20, 2023
1 parent f48f4a8 commit 04fc73e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tsconfig.dist.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.settings",
"include": ["./src"],
"exclude": ["**/__tests__/**"],
"exclude": ["**/test/**"],
"compilerOptions": {
"outDir": "./dist/types",
"rootDir": "."
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.settings",
"include": ["./src"],
"exclude": ["**/__tests__/**"],
"exclude": ["**/test/**"],
"compilerOptions": {
"noEmit": true
}
Expand Down

0 comments on commit 04fc73e

Please sign in to comment.