tsconfig.json 450 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "allowJs": true,
  7. "jsx": "react-jsx",
  8. "baseUrl": ".",
  9. "paths": {
  10. "@ant/claude-for-chrome-mcp": [
  11. "./stubs/ant-claude-for-chrome-mcp.ts"
  12. ],
  13. "color-diff-napi": [
  14. "./stubs/color-diff-napi.ts"
  15. ],
  16. "src/*": [
  17. "./src/*"
  18. ]
  19. },
  20. "types": [
  21. "bun-types"
  22. ]
  23. }
  24. }