rekby_obsidian-video-notes/jest.config.js
Timofey Koolin fb28bd4545 init
2026-04-12 15:17:02 +03:00

10 lines
289 B
JavaScript

module.exports = {
preset: "ts-jest",
testEnvironment: "node",
roots: ["<rootDir>/tests"],
testMatch: ["**/*.test.ts"],
moduleFileExtensions: ["ts", "js"],
transform: {
"^.+\\.ts$": ["ts-jest", { tsconfig: { module: "commonjs", target: "ES2020", esModuleInterop: true } }],
},
};