build: switch to NodeNext module resolution
[e-mobility-charging-stations-simulator.git] / src / charging-station / ui-server / UIServerFactory.ts
index d3c34b58aedaaa48f25289d011d84a4ba3cec942..b192ff35c9cc5283e5b08b381c86ee2745458937 100644 (file)
@@ -1,14 +1,14 @@
 import chalk from 'chalk';
 
-import type { AbstractUIServer } from './AbstractUIServer';
-import { UIHttpServer } from './UIHttpServer';
-import { UIServerUtils } from './UIServerUtils';
-import { UIWebSocketServer } from './UIWebSocketServer';
+import type { AbstractUIServer } from './AbstractUIServer.js';
+import { UIHttpServer } from './UIHttpServer.js';
+import { UIServerUtils } from './UIServerUtils.js';
+import { UIWebSocketServer } from './UIWebSocketServer.js';
 import {
   ApplicationProtocol,
   ApplicationProtocolVersion,
   type UIServerConfiguration,
-} from '../../types';
+} from '../../types/index.js';
 
 export class UIServerFactory {
   private constructor() {