mirror of
https://github.com/rekby/obsidian-video-notes.git
synced 2026-07-22 06:08:35 +00:00
10 lines
289 B
JavaScript
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 } }],
|
|
},
|
|
};
|