Polymarket_Copy_Bot/tsconfig.json
Alexis Bruneteau 13f55b506a Initial commit: Polymarket Copy Trading Bot
- Complete bot implementation with TUI dashboard
- Trade detection and copying from monitored accounts
- Magic Login authentication support
- SQLite database for trade persistence
- Real-time balance tracking and trade execution
- 15-minute window market analysis
- Comprehensive error handling and logging
2025-12-06 19:58:56 +01:00

25 lines
592 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noUnusedLocals": false,
"noUnusedParameters": false
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}