build: switch to NodeNext module resolution
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / 2.0 / OCPP20ResponseService.ts
index 111b114a34048113c4fdf2a60a77133570fe4405..98f2afb61ebe816a675181a033c06be715f8ecd1 100644 (file)
@@ -2,9 +2,9 @@
 
 import type { JSONSchemaType } from 'ajv';
 
-import { OCPP20ServiceUtils } from './OCPP20ServiceUtils';
-import { type ChargingStation, addConfigurationKey } from '../../../charging-station';
-import { OCPPError } from '../../../exception';
+import { OCPP20ServiceUtils } from './OCPP20ServiceUtils.js';
+import { type ChargingStation, addConfigurationKey } from '../../../charging-station/index.js';
+import { OCPPError } from '../../../exception/index.js';
 import {
   ErrorType,
   type JsonType,
@@ -18,9 +18,9 @@ import {
   OCPPVersion,
   RegistrationStatusEnumType,
   type ResponseHandler,
-} from '../../../types';
-import { logger } from '../../../utils';
-import { OCPPResponseService } from '../OCPPResponseService';
+} from '../../../types/index.js';
+import { logger } from '../../../utils/index.js';
+import { OCPPResponseService } from '../OCPPResponseService.js';
 
 const moduleName = 'OCPP20ResponseService';