refactor: migrate to ES modules

package.json type=module, tsconfig module/moduleResolution=NodeNext,
target es2022, explicit .js on all relative imports. Center: jsonwebtoken
& bcryptjs switched to default imports (ESM/CJS interop). Verified:
builds, boots, full auth + plugin round-trip work under ESM.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
h z
2026-05-15 18:47:35 +01:00
parent dea946653b
commit 44aa34d1ff
20 changed files with 64 additions and 62 deletions

View File

@@ -1,8 +1,8 @@
import 'reflect-metadata';
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { AuthService } from './auth/auth.service';
import { NodeAdminService } from './nodes/node-admin.service';
import { AppModule } from './app.module.js';
import { AuthService } from './auth/auth.service.js';
import { NodeAdminService } from './nodes/node-admin.service.js';
function getArg(flag: string): string | null {
const idx = process.argv.indexOf(flag);