11 lines
196 B
JavaScript
11 lines
196 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
coverageDirectory: "./coverage",
|
|
rootDir: "./",
|
|
roots: [
|
|
"./test"
|
|
]
|
|
};
|