1
0
silverbullet/plugbox/jest.config.js
2022-03-14 10:07:38 +01:00

14 lines
286 B
JavaScript

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",
},
};