build: switch to NodeNext module resolution
[e-mobility-charging-stations-simulator.git] / src / charging-station / Helpers.ts
index 4f34fe180a33b01714466c4fb3cc792335863965..094205b8965cece47147e944f1f1c0e46f34dcf3 100644 (file)
@@ -22,9 +22,9 @@ import {
 } from 'date-fns';
 import { maxTime } from 'date-fns/constants';
 
-import type { ChargingStation } from './ChargingStation';
-import { getConfigurationKey } from './ConfigurationKeyUtils';
-import { BaseError } from '../exception';
+import type { ChargingStation } from './ChargingStation.js';
+import { getConfigurationKey } from './ConfigurationKeyUtils.js';
+import { BaseError } from '../exception/index.js';
 import {
   AmpereUnits,
   AvailabilityType,
@@ -52,7 +52,7 @@ import {
   StandardParametersKey,
   SupportedFeatureProfiles,
   Voltage,
-} from '../types';
+} from '../types/index.js';
 import {
   ACElectricUtils,
   Constants,
@@ -70,7 +70,7 @@ import {
   isValidTime,
   logger,
   secureRandom,
-} from '../utils';
+} from '../utils/index.js';
 
 const moduleName = 'Helpers';