mc-publish/jest.config.cjs

18 lines
438 B
JavaScript
Raw Normal View History

2022-11-29 08:12:43 -05:00
module.exports = {
preset: "ts-jest/presets/js-with-ts-esm",
transform: {
"\\.ts$": ["ts-jest", {
useESM: true,
diagnostics: false,
isolatedModules: true,
}],
"\\.js$": "babel-jest",
},
testEnvironment: "node",
testMatch: ["**/tests/**/*/*.spec.ts"],
moduleNameMapper: {
"^@/(.*)$": "<rootDir>/src/$1",
},
transformIgnorePatterns: [],
};