chore: migrate to eslint 9
[poolifier.git] / examples / typescript / http-server-pool / fastify-hybrid / rollup.config.ts
index 6bb949aa6a7bcab8e3e54d8a47a60950996b9a30..ae79b9bcf0e0b04525c6ee13ce14ff0728bfc454 100644 (file)
@@ -6,7 +6,7 @@ export default defineConfig({
   input: [
     './src/main.ts',
     './src/fastify-worker.ts',
-    './src/request-handler-worker.ts'
+    './src/request-handler-worker.ts',
   ],
   strictDeprecations: true,
   output: [
@@ -15,19 +15,19 @@ export default defineConfig({
       dir: './dist',
       sourcemap: true,
       entryFileNames: '[name].cjs',
-      chunkFileNames: '[name]-[hash].cjs'
+      chunkFileNames: '[name]-[hash].cjs',
     },
     {
       format: 'esm',
       dir: './dist',
-      sourcemap: true
-    }
+      sourcemap: true,
+    },
   ],
   external: ['fastify', 'fastify-plugin', /^node:*/, 'poolifier'],
   plugins: [
     typescript(),
     del({
-      targets: ['./dist/*']
-    })
-  ]
+      targets: ['./dist/*'],
+    }),
+  ],
 })