UNPKG

@markwylde/eventbase

Version:

A distributed, event-sourced, key-value database built on top of **NATS JetStream**. Eventbase provides a simple yet powerful API for storing, retrieving, and subscribing to data changes, with automatic state synchronization across distributed instances a

20 lines (19 loc) 647 B
{ "compilerOptions": { "target": "ESNext", // or a later version like "ES2020" "lib": ["ESNext"], // Include necessary libraries "moduleDetection": "force", "module": "Preserve", // Use "ESNext" instead of "Preserve" for better module support "allowJs": true, "esModuleInterop": true, "isolatedModules": true, "outDir": "lib", "strict": true, // Enable strict type-checking "skipLibCheck": true, // Skip type checking of declaration files "forceConsistentCasingInFileNames": true, "declaration": true, "sourceMap": true }, "exclude": ["node_modules"], "include": ["src", "tests"] }