keynest-store
Version:
KeyNest is a lightweight TypeScript key-value store with TTL, global cleanup of inactive data, and event support. Perfect for caching, session storage, and temporary data handling in Node.js apps.
20 lines • 504 B
JSON
{
"compilerOptions": {
"target": "ES2024",
"module": "CommonJS",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"useDefineForClassFields": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"sourceMap": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "Node"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}