chore(medusa-dev-cli): Cleanup plugin setup (#4421)

FIXES CORE-1420

does not include ts migration
This commit is contained in:
Adrien de Peretti
2023-06-28 11:32:05 +00:00
committed by GitHub
parent 627bdb689f
commit 5a4580b6a8
8 changed files with 87 additions and 46 deletions
+13
View File
@@ -0,0 +1,13 @@
module.exports = {
globals: {
"ts-jest": {
tsConfig: "tsconfig.spec.json",
isolatedModules: false,
},
},
transform: {
"^.+\\.[jt]s?$": "ts-jest",
},
testEnvironment: `node`,
moduleFileExtensions: [`js`, `jsx`, `ts`, `tsx`, `json`],
}