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>
14 lines
353 B
TypeScript
14 lines
353 B
TypeScript
import "reflect-metadata";
|
|
import "source-map-support/register";
|
|
|
|
import { Program } from "@spt-aki/Program";
|
|
|
|
globalThis.G_DEBUG_CONFIGURATION = false;
|
|
globalThis.G_RELEASE_CONFIGURATION = true;
|
|
globalThis.G_MODS_ENABLED = true;
|
|
globalThis.G_MODS_TRANSPILE_TS = true;
|
|
globalThis.G_LOG_REQUESTS = false;
|
|
|
|
const program = new Program();
|
|
program.start();
|