build: switch to NodeNext module resolution
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / OCPPIncomingRequestService.ts
index c93129bcfadbca7e1d0e0c3454e5ed7b8c092885..06a80e3ae7b966019ab879370005448d26a293f7 100644 (file)
@@ -1,18 +1,18 @@
 import Ajv, { type JSONSchemaType, type ValidateFunction } from 'ajv';
 import ajvFormats from 'ajv-formats';
 
-import { OCPPConstants } from './OCPPConstants';
-import { OCPPServiceUtils } from './OCPPServiceUtils';
-import { type ChargingStation, getIdTagsFile } from '../../charging-station';
-import { OCPPError } from '../../exception';
+import { OCPPConstants } from './OCPPConstants.js';
+import { OCPPServiceUtils } from './OCPPServiceUtils.js';
+import { type ChargingStation, getIdTagsFile } from '../../charging-station/index.js';
+import { OCPPError } from '../../exception/index.js';
 import type {
   ClearCacheResponse,
   HandleErrorParams,
   IncomingRequestCommand,
   JsonType,
   OCPPVersion,
-} from '../../types';
-import { logger, setDefaultErrorParams } from '../../utils';
+} from '../../types/index.js';
+import { logger, setDefaultErrorParams } from '../../utils/index.js';
 
 const moduleName = 'OCPPIncomingRequestService';