build: switch default to ESM
[poolifier.git] / src / pools / selection-strategies / least-used-worker-choice-strategy.ts
index 6318affe0a306492fe7d1257d6a99e05e3938a67..c1a4a6ac73dd8277ab6b73784a5c3bfcf6f42f89 100644 (file)
@@ -1,10 +1,10 @@
-import type { IPool } from '../pool'
-import type { IWorker } from '../worker'
-import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy'
+import type { IPool } from '../pool.js'
+import type { IWorker } from '../worker.js'
+import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy.js'
 import type {
   IWorkerChoiceStrategy,
   InternalWorkerChoiceStrategyOptions
-} from './selection-strategies-types'
+} from './selection-strategies-types.js'
 
 /**
  * Selects the least used worker.