build: switch to NodeNext module resolution
[e-mobility-charging-stations-simulator.git] / src / charging-station / IdTagsCache.ts
index 5e0ab0b8f0778c2fbf02333c579657387a5c1d5f..3e259fff7fd62e4972c0fac5d360f6851b9defcb 100644 (file)
@@ -1,8 +1,8 @@
 import { type FSWatcher, readFileSync } from 'node:fs';
 
-import type { ChargingStation } from './ChargingStation';
-import { getIdTagsFile } from './Helpers';
-import { FileType, IdTagDistribution } from '../types';
+import type { ChargingStation } from './ChargingStation.js';
+import { getIdTagsFile } from './Helpers.js';
+import { FileType, IdTagDistribution } from '../types/index.js';
 import {
   handleFileException,
   isNotEmptyString,
@@ -10,7 +10,7 @@ import {
   logger,
   secureRandom,
   watchJsonFile,
-} from '../utils';
+} from '../utils/index.js';
 
 interface IdTagsCacheValueType {
   idTags: string[];