@shagital/atomic-lock
Version:
Universal atomic locking with pluggable drivers (Redis, SQLite, File, Memory)
25 lines (24 loc) • 540 B
JSON
{
"preset": "ts-jest",
"testEnvironment": "node",
"roots": ["<rootDir>/test"],
"testMatch": ["**/*.test.ts"],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
"testTimeout": 10000,
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"coverageReporters": ["text", "lcov"]
}