* feat: Add an analytics module and local and posthog providers * fix: Add tests and wire up in missing places * fix: Address feedback and add missing module typing * fix: Address feedback and add missing module typing --------- Co-authored-by: Adrien de Peretti <adrien.deperetti@gmail.com> Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
11 lines
342 B
JavaScript
11 lines
342 B
JavaScript
const defineJestConfig = require("../../../define_jest_config")
|
|
module.exports = defineJestConfig({
|
|
moduleNameMapper: {
|
|
"^@models": "<rootDir>/src/models",
|
|
"^@services": "<rootDir>/src/services",
|
|
"^@repositories": "<rootDir>/src/repositories",
|
|
"^@types": "<rootDir>/src/types",
|
|
"^@utils": "<rootDir>/src/utils",
|
|
},
|
|
})
|