mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-04-02 03:00:15 -04:00
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
18 lines
290 B
JSON
18 lines
290 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"moduleResolution": "NodeNext",
|
|
"module": "NodeNext"
|
|
},
|
|
"include": [
|
|
"./**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"**/__tests__/**",
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|