@datr.tech/marble-transformer-core
Version:
Marble transformer core
29 lines (28 loc) • 646 B
JSON
{
"coveragePathIgnorePatterns": ["<rootDir>/test/mocks"],
"coverageReporters": ["lcov", "json-summary", "text"],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleNameMapper": {
"@app-mtc/(.*)": "<rootDir>/src/$1",
"@test-mtc/(.*)": "<rootDir>/test/$1"
},
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/.git/",
"<rootDir>/.github/",
"<rootDir>/.husky/",
"<rootDir>/coverage/",
"<rootDir>/node_modules/"
],
"transform": {
"^.+.tsx?$": ["ts-jest", {}]
}
}