Skip to content

Commit

Permalink
ignore __tests__, __mocks__ for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
schtauffen committed Nov 8, 2020
1 parent 36e7f13 commit 877a0cb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,11 @@
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
},
"include": ["src/**/*"],
"include": [
"src/**/*"
],
"exclude": [
"**/__tests__/**/*",
"**/__mocks__/**/*"
]
}

0 comments on commit 877a0cb

Please sign in to comment.