From 90128eaa3f8c7e008955e19a3b3c7281f199feea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lehoczky=20Zolt=C3=A1n?= Date: Sun, 23 Jul 2023 10:11:36 +0200 Subject: [PATCH] fix: ignore docs during build --- .npmignore | 1 + tsconfig.build.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.npmignore b/.npmignore index 6e99e7ab..0e19c89a 100644 --- a/.npmignore +++ b/.npmignore @@ -1,4 +1,5 @@ .* bin/ +docs/ src/ jest.setup.ts diff --git a/tsconfig.build.json b/tsconfig.build.json index aaaf15bb..fd6c5ac3 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,4 +1,4 @@ { "extends": "./tsconfig.json", - "exclude": ["bin", "src/**/__tests__", "jest.setup.ts"] + "exclude": ["bin", "src/**/__tests__", "docs/**", "jest.setup.ts"] }