Files
Fabric.Backend.Guild/src/channels/turn.module.ts
hzhang 8c41d23a9c 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>
2026-05-15 18:47:36 +01:00

10 lines
203 B
TypeScript

import { Global, Module } from '@nestjs/common';
import { TurnService } from './turn.service.js';
@Global()
@Module({
providers: [TurnService],
exports: [TurnService],
})
export class TurnModule {}