feat: Update module exports and enhance TypeScript configuration

This commit is contained in:
2025-12-27 04:55:54 +00:00
parent b3875a111f
commit 2d80d53b70
12 changed files with 75 additions and 40 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
import type { General, GeneralTriggerState } from '../domain/entities';
import type { RandomGenerator } from '../ports/rng';
import type { WorldStateRepository } from '../ports/world';
import { TriggerCaller, type Trigger } from './core';
import type { General, GeneralTriggerState } from '../domain/entities.js';
import type { RandomGenerator } from '../ports/rng.js';
import type { WorldStateRepository } from '../ports/world.js';
import { TriggerCaller, type Trigger } from './core.js';
export interface GeneralActionLogSink {
push(message: string): void;