From f31cda5bec752f8ec4b19ccd219592a0d900b04a Mon Sep 17 00:00:00 2001 From: Rodrigo Date: Tue, 2 Nov 2021 13:04:25 -0500 Subject: [PATCH] Exclude examples directory from build command at plugin level --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index dfb3be9..32ab52e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,7 @@ ], "exclude": [ "**/__mocks__/*", - "**/__tests__/*" + "**/__tests__/*", + "examples" ] }