mirror of
https://github.com/MisskeyIO/misskey
synced 2024-12-29 22:18:15 +09:00
b9cb6d1c10
将来ESMに移行しやすいように Related: #7658 なんかmochaが起動しなくなってるけど理由不明 すぐ直したい
14 lines
210 B
TypeScript
14 lines
210 B
TypeScript
/**
|
|
* Misskey Entry Point!
|
|
*/
|
|
|
|
Error.stackTraceLimit = Infinity;
|
|
|
|
require('events').EventEmitter.defaultMaxListeners = 128;
|
|
|
|
import boot from './boot/index.js';
|
|
|
|
export default function() {
|
|
return boot();
|
|
}
|