build: switch default to ESM
[poolifier.git] / src / pools / selection-strategies / round-robin-worker-choice-strategy.ts
index 2d08cff20621ba564bb0b424c32a4bcd904f53bb..34c4f596db2af9c3f44e7940c9444effc9d44b77 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 next worker in a round robin fashion.