1
0
mirror of https://github.com/BrowserMCP/mcp.git synced 2025-05-04 16:21:43 +03:00
Files
mcp-browseruse-localchrome-…/tsconfig.json
2025-04-06 11:14:59 -04:00

20 lines
417 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "esnext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"outDir": "dist",
"rootDir": "src",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}