build: fix eslint configuration with type checking
[poolifier.git] / examples / typescript / http-server-pool / express-cluster / src / main.ts
index 2184f970c3a819c2ed67ca02d1370c66e36a6b13..eeb196a623a9c939a1f38bbabd157a581a5b7f5d 100644 (file)
@@ -1,6 +1,8 @@
 import { dirname, extname, join } from 'node:path'
 import { fileURLToPath } from 'node:url'
-import { FixedClusterPool, availableParallelism } from 'poolifier'
+
+import { availableParallelism, FixedClusterPool } from 'poolifier'
+
 import type { WorkerData, WorkerResponse } from './types.js'
 
 const workerFile = join(
@@ -24,12 +26,12 @@ const pool = new FixedClusterPool<WorkerData, WorkerResponse>(
           }
           return undefined
         })
-        .catch(error => {
+        .catch((error: unknown) => {
           console.error('Express failed to start in cluster worker:', error)
         })
     },
     errorHandler: (e: Error) => {
       console.error('Cluster worker error:', e)
-    }
+    },
   }
 )