oneuptime/IsolatedVM/jest.config.json

33 lines
725 B
JSON
Raw Normal View History

2024-04-05 17:22:29 +00:00
{
"preset": "ts-jest",
"testPathIgnorePatterns": [
"node_modules",
"dist"
],
2024-04-05 17:22:29 +00:00
"verbose": true,
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json",
"babelConfig": false
}
},
"moduleFileExtensions": ["ts", "js", "json"],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"collectCoverage": false,
"coverageReporters": ["text", "lcov"],
"testRegex": "./Tests/(.*).test.ts",
"collectCoverageFrom": ["./**/*.(tsx||ts)"],
"coverageThreshold": {
"global": {
"lines": 0,
"functions": 0,
"branches": 0,
"statements": 0
}
}
}