@@ -14,15 +14,15 @@ import {
1414} from "electron" ;
1515import * as fs from "fs" ;
1616import * as path from "path" ;
17- import type { Config } from ". /config" ;
18- import type { IpcMain } from ". /services/ipcMain" ;
19- import { VERSION } from ". /version" ;
20- import { IPC_CHANNELS } from ". /constants/ipc-constants" ;
21- import { getMuxHome , migrateCmuxToMux } from ". /constants/paths" ;
22- import { log } from ". /services/log" ;
23- import { parseDebugUpdater } from ". /utils/env" ;
24- import assert from ". /utils/assert" ;
25- import { loadTokenizerModules } from ". /utils/main/tokenizer" ;
17+ import type { Config } from "@/node /config" ;
18+ import type { IpcMain } from "@/node /services/ipcMain" ;
19+ import { VERSION } from "@ /version" ;
20+ import { IPC_CHANNELS } from "@/common /constants/ipc-constants" ;
21+ import { getMuxHome , migrateCmuxToMux } from "@/common /constants/paths" ;
22+ import { log } from "@/node /services/log" ;
23+ import { parseDebugUpdater } from "@/common /utils/env" ;
24+ import assert from "@/common /utils/assert" ;
25+ import { loadTokenizerModules } from "@/node /utils/main/tokenizer" ;
2626
2727// React DevTools for development profiling
2828// Using require() instead of import since it's dev-only and conditionally loaded
@@ -69,7 +69,7 @@ if (!app.isPackaged) {
6969let config : Config | null = null ;
7070let ipcMain : IpcMain | null = null ;
7171// eslint-disable-next-line @typescript-eslint/consistent-type-imports
72- let updaterService : typeof import ( "./services /updater" ) . UpdaterService . prototype | null = null ;
72+ let updaterService : typeof import ( "@/desktop /updater" ) . UpdaterService . prototype | null = null ;
7373const isE2ETest = process . env . MUX_E2E === "1" ;
7474const forceDistLoad = process . env . MUX_E2E_LOAD_DIST === "1" ;
7575
@@ -310,10 +310,10 @@ async function loadServices(): Promise<void> {
310310 { UpdaterService : UpdaterServiceClass } ,
311311 { TerminalWindowManager : TerminalWindowManagerClass } ,
312312 ] = await Promise . all ( [
313- import ( ". /config" ) ,
314- import ( ". /services/ipcMain" ) ,
315- import ( "./services /updater" ) ,
316- import ( "./services /terminalWindowManager" ) ,
313+ import ( "@/node /config" ) ,
314+ import ( "@/node /services/ipcMain" ) ,
315+ import ( "@/desktop /updater" ) ,
316+ import ( "@/desktop /terminalWindowManager" ) ,
317317 ] ) ;
318318 /* eslint-enable no-restricted-syntax */
319319 config = new ConfigClass ( ) ;
0 commit comments