7 lines
137 B
JavaScript
7 lines
137 B
JavaScript
|
|
/** @type {import('jest').Config} */
|
||
|
|
module.exports = {
|
||
|
|
preset: "ts-jest",
|
||
|
|
testEnvironment: "node",
|
||
|
|
roots: ["<rootDir>/tests"],
|
||
|
|
};
|