mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-02-19 11:54:58 -05:00
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:
@@ -8,5 +8,10 @@
|
||||
},
|
||||
"include": [
|
||||
"./**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"**/__tests__/**",
|
||||
"**/*.test.ts",
|
||||
"**/*.spec.ts"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user