build: switch default to ESM
[poolifier.git] / src / pools / thread / dynamic.ts
index d3764c285291407d75b1ee293ece40ebbc8c5dfd..2fc360817d2b7bab3e634365b03ca9b541c76715 100644 (file)
@@ -1,6 +1,6 @@
-import { PoolEvents, type PoolType, PoolTypes } from '../pool'
-import { checkDynamicPoolSize } from '../utils'
-import { FixedThreadPool, type ThreadPoolOptions } from './fixed'
+import { PoolEvents, type PoolType, PoolTypes } from '../pool.js'
+import { checkDynamicPoolSize } from '../utils.js'
+import { FixedThreadPool, type ThreadPoolOptions } from './fixed.js'
 
 /**
  * A thread pool with a dynamic number of threads, but a guaranteed minimum number of threads.