Files
BrowserOS/apps/server/tsconfig.json
Nikhil 742c349f86 feat: import missing tests (#124)
* feat: import all the missing tests before refactor

* fix: biome errors for tests

* fix: few type errors and add exceptiosn

* fix: few more type errors

* fix: remove agent port from tests

* fix: exclude tests from tsconfig, bun run tests natively

* fix: mcpServer test now waits for extension connected
2025-12-25 13:34:10 -08:00

13 lines
284 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"composite": true,
"declaration": true,
"declarationMap": true,
"resolveJsonModule": true
},
"include": ["src/**/*", "package.json"],
"exclude": ["node_modules", "dist/**/*"]
}