* feat: Add GitHub Actions workflow for Amplify deployment and configuration * feat: Update Amplify deployment workflow and add Serverless deployment workflow * feat: Set environment variables for Amplify monorepo deployment * feat: Refactor Amplify deployment configuration for monorepo structure * feat: Update environment variable naming and refactor image URL handling across the application * feat: Add Jest configuration and tests for project and user handlers
14 lines
295 B
JSON
14 lines
295 B
JSON
{
|
|
"preset": "ts-jest",
|
|
"testEnvironment": "node",
|
|
"setupFiles": ["<rootDir>/jest.env.js"],
|
|
"moduleFileExtensions": ["ts", "js"],
|
|
"transform": {
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
},
|
|
"testMatch": ["**/tests/**/*.test.ts"],
|
|
"moduleNameMapper": {
|
|
"^@/(.*)$": "<rootDir>/src/$1"
|
|
}
|
|
}
|