X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-server-pool%2Ffastify-hybrid%2Frollup.config.mjs;h=2ac38f32c587ea36c012fc11f8d2b86b2449541f;hb=edf8ce4e11eb0105038fcc236a2049c16b6175d2;hp=ecc218cf4a116ecb154bd73ec1f5b1849f5385f4;hpb=78cdf6bc0f67d72967aaeb948ec81479f875386b;p=poolifier.git diff --git a/examples/typescript/http-server-pool/fastify-hybrid/rollup.config.mjs b/examples/typescript/http-server-pool/fastify-hybrid/rollup.config.mjs index ecc218cf..2ac38f32 100644 --- a/examples/typescript/http-server-pool/fastify-hybrid/rollup.config.mjs +++ b/examples/typescript/http-server-pool/fastify-hybrid/rollup.config.mjs @@ -1,8 +1,9 @@ /* eslint-disable n/no-unpublished-import */ import typescript from '@rollup/plugin-typescript' import del from 'rollup-plugin-delete' +import { defineConfig } from 'rollup' -export default { +export default defineConfig({ input: [ './src/main.ts', './src/fastify-worker.ts', @@ -33,4 +34,4 @@ export default { targets: ['./dist/*'] }) ] -} +})