UNPKG

@iocium/cachekit

Version:

A pluggable, backend-agnostic caching adapter for Node.js and serverless platforms

18 lines (17 loc) 341 B
/** @type {import('ts-jest').JestConfigWithTsJest} */ export default { preset: 'ts-jest', testEnvironment: 'node', coverageDirectory: "coverage", coveragePathIgnorePatterns: [ "/node_modules/" ], coverageThreshold: { global: { statements: 95, branches: 90, functions: 95, lines: 95 } } };