mirror of
https://github.com/neynarxyz/create-farcaster-mini-app.git
synced 2025-11-16 08:08:56 -05:00
26 lines
592 B
JSON
26 lines
592 B
JSON
{
|
|
"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"
|
|
]
|
|
}
|