build: switch to NodeNext module resolution
[e-mobility-charging-stations-simulator.git] / src / charging-station / ui-server / UIHttpServer.ts
index 85dbccdfe6ca5f79c10e360391f3b358f7aef871..eeab416d5e4a8d7b43db5733d3f2b6506d7e2c27 100644 (file)
@@ -2,9 +2,9 @@ import type { IncomingMessage, RequestListener, ServerResponse } from 'node:http
 
 import { StatusCodes } from 'http-status-codes';
 
-import { AbstractUIServer } from './AbstractUIServer';
-import { UIServerUtils } from './UIServerUtils';
-import { BaseError } from '../../exception';
+import { AbstractUIServer } from './AbstractUIServer.js';
+import { UIServerUtils } from './UIServerUtils.js';
+import { BaseError } from '../../exception/index.js';
 import {
   ApplicationProtocolVersion,
   type ProcedureName,
@@ -15,7 +15,7 @@ import {
   type RequestPayload,
   ResponseStatus,
   type UIServerConfiguration,
-} from '../../types';
+} from '../../types/index.js';
 import {
   Constants,
   generateUUID,
@@ -23,7 +23,7 @@ import {
   isNullOrUndefined,
   logPrefix,
   logger,
-} from '../../utils';
+} from '../../utils/index.js';
 
 const moduleName = 'UIHttpServer';