From bd39b09e4c416fe1b284a32737faf448d68aa285 Mon Sep 17 00:00:00 2001 From: Sanghee Son Date: Fri, 31 Oct 2025 16:33:22 +0900 Subject: [PATCH] fix: exclude test files from filesystem build test files were being compiled into dist during build, causing issues in docker environments. added exclude pattern to tsconfig to skip __tests__ directory. fixes #2928 --- src/filesystem/tsconfig.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/filesystem/tsconfig.json b/src/filesystem/tsconfig.json index c0c20f357f..31a299d96b 100644 --- a/src/filesystem/tsconfig.json +++ b/src/filesystem/tsconfig.json @@ -8,5 +8,10 @@ }, "include": [ "./**/*.ts" + ], + "exclude": [ + "**/__tests__/**", + "**/*.test.ts", + "**/*.spec.ts" ] }