summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-05-19 17:26:03 -0700
committerMatthew Miller <matthew@millerti.me>2020-05-19 17:26:03 -0700
commita24b88f86afe30cbfbb6c86c071c3627f5b3a2c8 (patch)
treea779b8ec204dc8a2a71e4d2ce2918214009ff019
parent9b09981a7f9dba8915ba59b17f175a85fb13f778 (diff)
Exclude jest setup from build
-rw-r--r--tsconfig.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 748a5a0..09b8646 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -22,6 +22,7 @@
"src/**/*",
],
"exclude": [
- "src/**/*.test.ts"
+ "src/**/*.test.ts",
+ "src/setupTests.ts"
]
}