* chore: shard unit tests * chore: move paypal and stripe to swc * chore: update actions * chore: refactor http paypal client * chore: added changeset * chore: remove medusa changes
15 lines
312 B
JavaScript
15 lines
312 B
JavaScript
module.exports = {
|
|
globals: {
|
|
"ts-jest": {
|
|
tsconfig: "tsconfig.spec.json",
|
|
isolatedModules: false,
|
|
},
|
|
},
|
|
transform: {
|
|
"^.+\\.[jt]s?$": "@swc/jest",
|
|
},
|
|
testEnvironment: `node`,
|
|
moduleFileExtensions: [`js`, `ts`, `json`],
|
|
modulePathIgnorePatterns: ["dist", "node_modules"],
|
|
}
|