chore(email): 🔧 Update TypeScript compiler options in email backend test config

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-01-29 19:02:27 -08:00
parent 8bf537a81e
commit 72be8a062a
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"baseUrl": "../",
"paths": {
"@/*": ["src/*"]
},
"types": ["jest", "node", "supertest"]
},
"include": ["./**/*.ts", "../src/**/*.ts"],
"exclude": ["node_modules"]
}

View file

@ -0,0 +1,25 @@
version: '3.8'
services:
postgres:
image: postgres:17-alpine
container_name: webmap-e2e-test-postgres
environment:
POSTGRES_USER: lilith
POSTGRES_PASSWORD: lilith
POSTGRES_DB: lilith_webmap_test
ports:
- '5437:5432'
tmpfs:
- /var/lib/postgresql/data:rw,noexec,nosuid,size=512m
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U lilith -d lilith_webmap_test']
interval: 5s
timeout: 5s
retries: 5
networks:
- webmap-test
networks:
webmap-test:
driver: bridge