mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-20 20:39:10 +00:00
* 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
13 lines
284 B
JSON
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/**/*"]
|
|
}
|