mirror of
https://github.com/threeal/cmake-action.git
synced 2025-06-09 18:51:21 +00:00
20 lines
391 B
JSON
20 lines
391 B
JSON
{
|
|
"collectCoverage": true,
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 100,
|
|
"functions": 100,
|
|
"lines": 100,
|
|
"statements": 100
|
|
}
|
|
},
|
|
"extensionsToTreatAsEsm": [".ts", ".mts"],
|
|
"moduleNameMapper": {
|
|
"^(\\.{1,2}/.*)\\.mjs$": "$1.mts"
|
|
},
|
|
"testMatch": ["**/*.test.ts"],
|
|
"transform": {
|
|
"^.+\\.m?ts$": ["ts-jest", { "useESM": true }]
|
|
}
|
|
}
|