feat: Convert app, server, worker ts files to JS

This commit is contained in:
Faruk AYDIN
2024-01-04 21:47:34 +01:00
parent 0f71924d06
commit 523f8a8951
3 changed files with 4 additions and 7 deletions

View File

@@ -0,0 +1,21 @@
import * as Sentry from './helpers/sentry.ee';
import appConfig from './config/app';
Sentry.init();
import './config/orm';
import './helpers/check-worker-readiness';
import './workers/flow';
import './workers/trigger';
import './workers/action';
import './workers/email';
import './workers/delete-user.ee';
if (appConfig.isCloud) {
import('./workers/remove-cancelled-subscriptions.ee');
import('./queues/remove-cancelled-subscriptions.ee');
}
import telemetry from './helpers/telemetry';
telemetry.setServiceType('worker');