From 0c466b1b0944e8d0022b5b15069364a8483bf9c5 Mon Sep 17 00:00:00 2001 From: Jonathan Church Date: Sat, 29 Feb 2020 19:34:42 -0500 Subject: [PATCH] Ignore test files when bundling (#220) --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 908de73..880e6ae 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,5 +13,6 @@ "sourceMap": true, "inlineSources": true }, - "include": ["src/**/*"] + "include": ["src/**/*"], + "exclude": ["src/**/*.spec.ts"] }