/ tsconfig.json
tsconfig.json
1 { 2 "compilerOptions": { 3 "target": "ESNext", 4 "module": "ESNext", 5 "moduleResolution": "bundler", 6 "jsx": "react-jsx", 7 "esModuleInterop": true, 8 "allowImportingTsExtensions": true, 9 "noEmit": true, 10 "strict": false, 11 "noImplicitAny": false, 12 "noUnusedLocals": false, 13 "noUnusedParameters": false, 14 "skipLibCheck": true, 15 "resolveJsonModule": true, 16 "isolatedModules": true, 17 "forceConsistentCasingInFileNames": true, 18 "types": ["node"], 19 "baseUrl": ".", 20 "paths": { 21 "@ant/claude-for-chrome-mcp": ["./src/typings/@ant/claude-for-chrome-mcp/index.d.ts"], 22 "@ant/computer-use-input": ["./src/typings/@ant/computer-use-input/index.d.ts"], 23 "@ant/computer-use-mcp": ["./src/typings/@ant/computer-use-mcp/index.d.ts"], 24 "@ant/computer-use-mcp/types": ["./src/typings/@ant/computer-use-mcp/types.d.ts"], 25 "@ant/computer-use-mcp/sentinelApps": ["./src/typings/@ant/computer-use-mcp/sentinelApps.d.ts"], 26 "@ant/computer-use-swift": ["./src/typings/@ant/computer-use-swift/index.d.ts"], 27 "@anthropic-ai/claude-agent-sdk": ["./src/typings/@anthropic-ai/claude-agent-sdk/index.d.ts"], 28 "bun:bundle": ["./src/typings/bun-bundle.d.ts"], 29 "bun:ffi": ["./src/typings/bun-ffi.d.ts"], 30 "src/*": ["./src/*"] 31 } 32 }, 33 "include": ["src/**/*", "vendor/**/*"] 34 }