-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
21 lines (21 loc) · 1.12 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"paths": {
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "components/transactionSlug/index.jsx", "pages/transactions/[transaction].jsx", "pages/transactions/index.jsx", "pages/block/index.jsx", "components/Blocks/blocksTable.jsx", "lib/fetchBlockBySlot.js", "lib/fetchLatestBlockhash.js", "utils/formatDate.js", "utils/formatTimeAgo.js", "utils/truncateData.js", "utils/useCopyToClipboard.js", "pages/block/[blocks].jsx", "components/BlockSlug/overview.jsx", "components/BlockSlug/transactionTable.jsx", "components/BlockSlug/index.jsx", "pages/index.jsx", "components/AppWalletProvider.tsx", "components/SolPriceNav/solPrice.jsx", "pages/api/solanaData.jsx", "components/RecentTransactions/transactionTable.jsx"],
"exclude": ["node_modules"]
}