1
0
silverbullet/plugbox/jest.config.js

14 lines
286 B
JavaScript
Raw Normal View History

2022-03-14 09:07:38 +00:00
export default {
extensionsToTreatAsEsm: [".ts"],
preset: "ts-jest/presets/default-esm", // or other ESM presets
globals: {
"ts-jest": {
useESM: true,
tsconfig: "<rootDir>/tsconfig.json",
},
},
moduleNameMapper: {
"^(\\.{1,2}/.*)\\.js$": "$1",
},
};