Correct formating imports

This commit is contained in:
Shreyaschorge
2025-07-07 16:07:33 +05:30
parent 193dffe03a
commit 2a1a3d7c40
38 changed files with 1012 additions and 469 deletions

25
tsconfig.dev.json Normal file
View File

@@ -0,0 +1,25 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"skipLibCheck": true,
"noEmit": true
},
"ts-node": {
"skipIgnore": true
},
"exclude": [
"node_modules",
".next",
"out",
"build",
"dist",
// Exclude files that depend on Farcaster SDK packages not in devDependencies
"src/app/api/send-notification/**",
"src/app/api/webhook/**",
"src/components/providers/SafeFarcasterSolanaProvider.tsx",
"src/components/ui/tabs/WalletTab.tsx",
"src/components/ui/wallet/SendSolana.tsx",
"src/lib/kv.ts",
"src/lib/notifs.ts"
]
}