mirror of
https://github.com/pdemian/human2regex.git
synced 2025-05-16 12:30:09 -07:00
16 lines
468 B
TypeScript
16 lines
468 B
TypeScript
/*
|
|
* For a detailed explanation regarding each configuration property and type check, visit:
|
|
* https://jestjs.io/docs/en/configuration.html
|
|
*/
|
|
|
|
export default {
|
|
transform: { "^.+\\.ts$": "ts-jest" },
|
|
testEnvironment: "node",
|
|
collectCoverage: true,
|
|
coverageDirectory: "coverage",
|
|
coveragePathIgnorePatterns: [ "/node_modules/", "/docs/" ],
|
|
coverageProvider: "v8",
|
|
testRegex: "/tests/.*\\.spec\\.(ts)$",
|
|
moduleFileExtensions: [ "ts", "js" ],
|
|
verbose: true
|
|
}; |