build: switch default to ESM
[poolifier.git] / src / pools / thread / fixed.ts
index f48d0bcd9960da1a2ff89582035a9ad9a9581774..11a24e2780dc445a37cdca15808eb71f95dd5bd9 100644 (file)
@@ -5,10 +5,10 @@ import {
   type Worker,
   isMainThread
 } from 'node:worker_threads'
-import type { MessageValue } from '../../utility-types'
-import { AbstractPool } from '../abstract-pool'
-import { type PoolOptions, type PoolType, PoolTypes } from '../pool'
-import { type WorkerType, WorkerTypes } from '../worker'
+import type { MessageValue } from '../../utility-types.js'
+import { AbstractPool } from '../abstract-pool.js'
+import { type PoolOptions, type PoolType, PoolTypes } from '../pool.js'
+import { type WorkerType, WorkerTypes } from '../worker.js'
 
 /**
  * Options for a poolifier thread pool.