mirror of
https://github.com/astral-sh/setup-uv.git
synced 2025-01-18 15:58:19 +08:00
182c9c7e92
## Summary I know this is a little tedious but I'd prefer to use the same settings as in Ruff.
10 lines
176 B
JavaScript
10 lines
176 B
JavaScript
module.exports = {
|
|
clearMocks: true,
|
|
moduleFileExtensions: ["js", "ts"],
|
|
testMatch: ["**/*.test.ts"],
|
|
transform: {
|
|
"^.+\\.ts$": "ts-jest",
|
|
},
|
|
verbose: true,
|
|
};
|