2022-12-30 12:12:04 +01:00
|
|
|
import type { JestConfigWithTsJest } from "ts-jest";
|
|
|
|
|
|
|
|
|
|
const jestConfig: JestConfigWithTsJest = {
|
2022-12-01 12:03:37 +01:00
|
|
|
preset: "ts-jest",
|
|
|
|
|
testEnvironment: "node",
|
2022-12-30 12:12:04 +01:00
|
|
|
moduleDirectories: ["node_modules", "src/bin"],
|
2022-12-01 12:03:37 +01:00
|
|
|
};
|
2022-12-30 12:12:04 +01:00
|
|
|
|
|
|
|
|
export default jestConfig;
|