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>
23 lines
650 B
TypeScript
23 lines
650 B
TypeScript
import "reflect-metadata";
|
|
import "source-map-support/register";
|
|
|
|
import { Program } from "@spt/Program";
|
|
// target run:profiler doesnt work with this here
|
|
// since this is the Test entry we can just remove
|
|
// it and leave those empty
|
|
// import * as buildInfo from "./build.json";
|
|
|
|
globalThis.G_DEBUG_CONFIGURATION = true;
|
|
globalThis.G_RELEASE_CONFIGURATION = false;
|
|
globalThis.G_MODS_ENABLED = true;
|
|
globalThis.G_MODS_TRANSPILE_TS = false;
|
|
globalThis.G_LOG_REQUESTS = true;
|
|
globalThis.G_WATERMARK_ENABLED = false;
|
|
|
|
globalThis.G_SPTVERSION = "";
|
|
globalThis.G_COMMIT = "";
|
|
globalThis.G_BUILDTIME = "";
|
|
|
|
const program = new Program();
|
|
program.start();
|