Files
explore/tsconfig.json
Zach Kelling 6439fa7f1d feat: horizontal blocks layout, stats grid, network overview fallback chains
- LatestBlocks: full-width layout instead of fixed 280px sidebar
- Stats: 4-column grid on desktop, 2-column on mobile
- NetworkOverview: fallback known L1 chains when P-chain API unreachable
- NetworkOverview: expose isError from useCurrentValidators
- P-chain hooks: add retry:2 for resilience
- UserProfile: use address_hash instead of id for display
- Replace middleware.ts with proxy.ts (unused in production Docker)
- Add toolkit/chakra/separator re-export
- tsconfig: jsx react-jsx, formatting cleanup
- dev.sh: disable turbopack (stability)
2026-03-02 10:36:17 -08:00

47 lines
992 B
JSON

{
"compilerOptions": {
"target": "es2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"baseUrl": ".",
"paths": {},
"types": [
"node"
]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.node.ts",
"**/*.tsx",
"**/*.pw.tsx",
"decs.d.ts",
"global.d.ts"
],
"exclude": [
"node_modules",
"node_modules_linux",
"./deploy/tools/envs-validator",
"./deploy/tools/favicon-generator",
"./deploy/tools/multichain-config-generator",
"./deploy/tools/essential-dapps-chains-config-generator",
"./toolkit/package",
"./deploy/tools/llms-txt-generator"
]
}