d13e86ba46
Rebranded src code and scripts to SPT Co-authored-by: clodan <clodan@clodan.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/345 Co-authored-by: Alex <clodan@noreply.dev.sp-tarkov.com> Co-committed-by: Alex <clodan@noreply.dev.sp-tarkov.com>
20 lines
565 B
TypeScript
20 lines
565 B
TypeScript
import "reflect-metadata";
|
|
import "source-map-support/register";
|
|
|
|
import { Program } from "@spt/Program";
|
|
import * as buildInfo from "./build.json";
|
|
|
|
globalThis.G_DEBUG_CONFIGURATION = true;
|
|
globalThis.G_RELEASE_CONFIGURATION = true;
|
|
globalThis.G_MODS_ENABLED = false;
|
|
globalThis.G_MODS_TRANSPILE_TS = true;
|
|
globalThis.G_LOG_REQUESTS = true;
|
|
globalThis.G_WATERMARK_ENABLED = true;
|
|
|
|
globalThis.G_SPTVERSION = buildInfo.sptVersion;
|
|
globalThis.G_COMMIT = buildInfo.commit;
|
|
globalThis.G_BUILDTIME = buildInfo.buildTime;
|
|
|
|
const program = new Program();
|
|
program.start();
|