From 0a5f83704d8640c42fdb51f11c59ee7f63faf2dd Mon Sep 17 00:00:00 2001 From: Oliver Akins Date: Wed, 20 Jul 2022 21:25:10 -0600 Subject: [PATCH] Add more exclude directories --- common/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/tsconfig.json b/common/tsconfig.json index ac14e8e..1da33eb 100644 --- a/common/tsconfig.json +++ b/common/tsconfig.json @@ -72,6 +72,9 @@ "stripInternal": true }, "exclude": [ - "src/**/*.spec.ts" + "src/**/*.spec.ts", + "esm/**/*", + "cjs/**/*", + "node_modules/**/*" ] }