From 94e6fb6deb3434a52ecad9ce4a96a75c554d12e2 Mon Sep 17 00:00:00 2001 From: David Losert Date: Wed, 1 Mar 2023 07:43:00 +0000 Subject: [PATCH] Fixes build to only include src folder --- tsconfig.build.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index a54c6bb..143410b 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,6 +1,6 @@ { "extends": "./tsconfig.json", - "exclude": ["node_modules", "__tests__"], + "include": ["src"], "compilerOptions": { "outDir": "./lib" /* Redirect output structure to the directory. */, "rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */