diff --git a/src/modules/ad/core/domain/carpool-path-creator.service.ts b/src/modules/ad/core/domain/carpool-path-creator.service.ts index 5448ae2..763938e 100644 --- a/src/modules/ad/core/domain/carpool-path-creator.service.ts +++ b/src/modules/ad/core/domain/carpool-path-creator.service.ts @@ -235,8 +235,8 @@ export class CarpoolPathCreator { index == 0 ? Target.START : index == waypoints.length - 1 - ? Target.FINISH - : Target.INTERMEDIATE; + ? Target.FINISH + : Target.INTERMEDIATE; /** * Consolidate carpoolPath by removing duplicate actors (eg. driver with neutral and start or finish target) diff --git a/tsconfig.json b/tsconfig.json index 42a1cde..58c4a31 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -20,7 +20,7 @@ "paths": { "@libs/*": ["src/libs/*"], "@modules/*": ["src/modules/*"], - "@src/*": ["src/*"] - } - } + "@src/*": ["src/*"], + }, + }, }