build: switch to NodeNext module resolution
[e-mobility-charging-stations-simulator.git] / src / performance / storage / JsonFileStorage.ts
index 58680181f7499b858e485ea828e6f969910b78f9..ff1199597bc3fcb05acd508ff7ad0378632c7369 100644 (file)
@@ -3,16 +3,16 @@
 import { closeSync, existsSync, mkdirSync, openSync, writeSync } from 'node:fs';
 import { dirname } from 'node:path';
 
-import { Storage } from './Storage';
-import { BaseError } from '../../exception';
-import { FileType, type Statistics } from '../../types';
+import { Storage } from './Storage.js';
+import { BaseError } from '../../exception/index.js';
+import { FileType, type Statistics } from '../../types/index.js';
 import {
   AsyncLock,
   AsyncLockType,
   JSONStringifyWithMapSupport,
   handleFileException,
   isNullOrUndefined,
-} from '../../utils';
+} from '../../utils/index.js';
 
 export class JsonFileStorage extends Storage {
   private static performanceRecords: Map<string, Statistics>;