mirror of
https://github.com/astral-sh/ruff-action.git
synced 2026-05-12 20:50:14 +02:00
deb632007b
Contributes to: #256
13 lines
327 B
JavaScript
13 lines
327 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
collectCoverageFrom: ["src/**/*.ts", "!src/**/*.d.ts"],
|
|
moduleFileExtensions: ["ts", "js"],
|
|
preset: "ts-jest",
|
|
roots: ["<rootDir>/src"],
|
|
testEnvironment: "node",
|
|
testMatch: ["**/*.test.ts"],
|
|
transform: {
|
|
"^.+\\.ts$": "ts-jest",
|
|
},
|
|
};
|