2023-03-03 16:23:46 +01:00
|
|
|
import "reflect-metadata";
|
2023-10-15 09:31:16 +02:00
|
|
|
import "source-map-support/register";
|
2023-10-19 19:21:17 +02:00
|
|
|
|
|
|
|
import { Program } from "@spt-aki/Program";
|
2023-03-03 16:23:46 +01:00
|
|
|
|
|
|
|
globalThis.G_DEBUG_CONFIGURATION = true;
|
|
|
|
globalThis.G_RELEASE_CONFIGURATION = true;
|
|
|
|
globalThis.G_MODS_ENABLED = true;
|
|
|
|
globalThis.G_MODS_TRANSPILE_TS = true;
|
|
|
|
globalThis.G_LOG_REQUESTS = true;
|
|
|
|
|
|
|
|
const program = new Program();
|
|
|
|
program.start();
|