From 7d71a89e7c0fd62c3ab56b0e09322a0e38d0cfa9 Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Thu, 16 May 2024 12:17:20 -0700 Subject: [PATCH] ignore examples dir Signed-off-by: Matthew Fisher --- tsconfig.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 5a898ecf..d82778ff 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,8 +17,9 @@ "moduleResolution": "node" }, "exclude": [ - "templates/**/*", + "bin/**/*", + "examples/**/*", "lib/**/*", - "bin/**/*" + "templates/**/*" ] -} \ No newline at end of file +}