synapsecns/sanguine

View on GitHub
packages/synapse-interface/tsconfig.json

Summary

Maintainability
Test Coverage
{
  "compilerOptions": {
    "target": "es2020",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "strict": false,
    "forceConsistentCasingInFileNames": true,
    "noEmit": true,
    "esModuleInterop": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "incremental": true,
    "paths": {
      "@/*": ["./*"],
      "@actions": ["./actions"],
      "@actions/*": ["./actions/*"],
      "@assets/": ["./assets"],
      "@assets/icons/": ["./assets/icons"],
      "@assets/networks/": ["./assets/networks"],
      "@assets/*": ["./assets/*"],
      "@components": ["./components"],
      "@components/*": ["./components/*"],
      "@contexts": ["./contexts"],
      "@contexts/*": ["./contexts/*"],
      "@tw": ["./components/ui/tailwind"],
      "@tw/*": ["./components/ui/tailwind/*"],
      "@layouts": ["./components/layouts"],
      "@layouts/*": ["./components/layouts/*"],
      "@icons": ["./components/icons"],
      "@icons/*": ["./components/icons/*"],
      "@urls": ["./constants/urls"],
      "@urls/*": ["./constants/urls/*"],
      "@utils": ["./utils"],
      "@utils/*": ["./utils/*"],
      "@constants": ["./constants"],
      "@constants/*": ["./constants/*"],
      "@graphql": ["./graphql"],
      "@graphql/*": ["./graphql/*"],
      "@abis": ["./constants/abis"],
      "@abis/*": ["./constants/abis/*"],
      "@styles": ["./styles"],
      "@styles/*": ["./styles/*"],
      "@pages": ["./pages"],
      "@pages/*": ["./pages/*"],
      "@hooks": ["./utils/hooks"],
      "@hooks/*": ["./utils/hooks/*"],
      "@bignumber": ["./utils/bignumber"],
      "@bignumber/*": ["./utils/bignumber/*"],
      "@slices": ["./slices"],
      "@slices/*": ["./slices/*"],
      "@store": ["./store"],
      "@store/*": ["./store/*"],
      "@types": ["./utils/types"],
      "@types/*": ["./utils/types/*"]
    },
    "jsx": "preserve"
  },
  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
  "exclude": ["node_modules"]
}