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
This commit is contained in:
Sanghee Son
2025-10-31 16:33:22 +09:00
parent c7c549711b
commit bd39b09e4c

View File

@@ -8,5 +8,10 @@
},
"include": [
"./**/*.ts"
],
"exclude": [
"**/__tests__/**",
"**/*.test.ts",
"**/*.spec.ts"
]
}