418d9f2a8f
- Ability to use @spt-aki path alias on the whole project. - Swapped all imports from relative paths, for imports using the path alias. Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/157 Co-authored-by: TheSparta <thesparta@noreply.dev.sp-tarkov.com> Co-committed-by: TheSparta <thesparta@noreply.dev.sp-tarkov.com>
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import { container } from "tsyringe";
|
|
|
|
import { ErrorHandler } from "@spt-aki/ErrorHandler";
|
|
import { Container } from "@spt-aki/di/Container";
|
|
import type { PreAkiModLoader } from "@spt-aki/loaders/PreAkiModLoader";
|
|
import { App } from "@spt-aki/utils/App";
|
|
import { Watermark } from "@spt-aki/utils/Watermark";
|
|
|
|
export class Program
|
|
{
|
|
|
|
private errorHandler: ErrorHandler;
|
|
constructor()
|
|
{
|
|
// set window properties
|
|
process.stdout.setEncoding("utf8");
|
|
process.title = "SPT-AKI Server";
|
|
this.errorHandler = new ErrorHandler();
|
|
}
|
|
|
|
public start(): void
|
|
{
|
|
try
|
|
{
|
|
Container.registerTypes(container);
|
|
const childContainer = container.createChildContainer();
|
|
childContainer.resolve<Watermark>("Watermark");
|
|
const preAkiModLoader = childContainer.resolve<PreAkiModLoader>("PreAkiModLoader");
|
|
Container.registerListTypes(childContainer);
|
|
preAkiModLoader.load(childContainer)
|
|
.then(() =>
|
|
{
|
|
Container.registerPostLoadTypes(container, childContainer);
|
|
childContainer.resolve<App>("App").load();
|
|
}).catch(rej => this.errorHandler.handleCriticalError(rej));
|
|
|
|
}
|
|
catch (e)
|
|
{
|
|
this.errorHandler.handleCriticalError(e);
|
|
}
|
|
}
|
|
}
|