**What** Update the `MedusaService` class, factory and types to remove the concept of main modules. The idea being that all method will be explicitly named and suffixes to represent the object you are trying to manipulate. This pr also includes various fixes in different modules Co-authored-by: Stevche Radevski <4820812+sradevski@users.noreply.github.com> Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
20 lines
443 B
JavaScript
20 lines
443 B
JavaScript
module.exports = {
|
|
moduleNameMapper: {
|
|
"^@models": "<rootDir>/src/models",
|
|
"^@services": "<rootDir>/src/services",
|
|
"^@repositories": "<rootDir>/src/repositories",
|
|
},
|
|
transform: {
|
|
"^.+\\.[jt]s?$": [
|
|
"ts-jest",
|
|
{
|
|
tsconfig: "tsconfig.spec.json",
|
|
isolatedModules: true,
|
|
},
|
|
],
|
|
},
|
|
testEnvironment: `node`,
|
|
moduleFileExtensions: [`js`, `ts`],
|
|
modulePathIgnorePatterns: ["dist/"],
|
|
}
|