diff --git a/apps/backend/tsconfig.json b/apps/backend/tsconfig.json index 3043c15..4feea10 100644 --- a/apps/backend/tsconfig.json +++ b/apps/backend/tsconfig.json @@ -9,7 +9,7 @@ "target": "ES2021", "sourceMap": true, "outDir": "./dist", - "baseUrl": "./", + "baseUrl": "./src", "incremental": true, "skipLibCheck": true, "strictNullChecks": true, @@ -23,9 +23,9 @@ "resolveJsonModule": true, "esModuleInterop": true, "paths": { - "@domain/*": ["src/domain/*"], - "@application/*": ["src/application/*"], - "@infrastructure/*": ["src/infrastructure/*"] + "@domain/*": ["domain/*"], + "@application/*": ["application/*"], + "@infrastructure/*": ["infrastructure/*"] } }, "include": ["src/**/*"],