hippofish/packages/backend/src/index.ts

15 lines
300 B
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Firefish Entry Point
2016-12-28 23:49:51 +01:00
*/
2023-01-13 05:40:33 +01:00
import { EventEmitter } from "node:events";
import { inspect } from "node:util";
2024-03-02 06:24:05 +01:00
import boot from "./boot/index.js";
2018-08-06 14:35:49 +02:00
2024-03-16 16:49:12 +01:00
Error.stackTraceLimit = Number.POSITIVE_INFINITY;
EventEmitter.defaultMaxListeners = 128;
2017-04-05 02:58:29 +02:00
2023-01-13 05:40:33 +01:00
boot().catch((err) => {
console.error(inspect(err));
});