1
0
Fork 0
mirror of https://github.com/muerwre/vk-tg-bot.git synced 2025-04-24 22:46:41 +07:00
vk-tg-bot/jest.config.cjs
2024-01-12 16:39:49 +07:00

15 lines
270 B
JavaScript

/** @type {import('@jest/types').Config.ProjectConfig} */
module.exports = {
transform: {
"\\.[jt]sx?$": [
"ts-jest",
{
useESM: true,
},
],
},
moduleNameMapper: {
"(.+)\\.js": "$1",
},
extensionsToTreatAsEsm: [".ts"],
};