ironnotify-js/tsconfig.json
David Friedel bd63d195ee Implement IronNotify JavaScript SDK
- NotifyClient with simple notify() and event builder APIs
- Real-time WebSocket support with auto-reconnect
- Offline queue with localStorage persistence
- Event builder with fluent API
- Notification management (get, markAsRead, unreadCount)
- Full TypeScript types
- ESM + CommonJS dual publishing
2025-12-25 10:34:21 +00:00

19 lines
434 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"lib": ["ES2020", "DOM"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}