From bc2b076d156f60a1da5b54c1e7e09978c55ca7fa Mon Sep 17 00:00:00 2001 From: Matt Voboril Date: Fri, 10 Jul 2020 11:47:40 -0500 Subject: [PATCH] fix: ignore types & script folders (#55) --- tsconfig.declaration.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.declaration.json b/tsconfig.declaration.json index a818300..a1581d3 100644 --- a/tsconfig.declaration.json +++ b/tsconfig.declaration.json @@ -4,7 +4,10 @@ ], "exclude": [ "features/**/*.*", - "docs/**/*.*" + "docs/**/*.*", + "types/**/*.*", + ".travis/**/*.*", + ".github/**/*.*" ], "compilerOptions": { "outDir": "./types",