Google Search MCP Server

{ "compilerOptions": { // Enable latest features "lib": ["ESNext", "DOM", "DOM.Iterable"], "target": "ESNext", "module": "ES2022", "allowJs": true, // Output configuration "outDir": "./dist", "moduleResolution": "node", "allowImportingTsExtensions": false, "noEmit": false, // Best practices "strict": true, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, // Some stricter flags "noUnusedLocals": false, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": true, "baseUrl": ".", "allowSyntheticDefaultImports": true, "esModuleInterop": true, // Types "types": ["bun-types"] }, "include": ["src/**/*"], "exclude": ["node_modules", "dist"] }