refactor: fix rollup configuration in examples
[poolifier.git] / examples / typescript / websocket-server-pool / ws-cluster / rollup.config.mjs
CommitLineData
72855e92
JB
1/* eslint-disable n/no-unpublished-import */
2import typescript from '@rollup/plugin-typescript'
3import del from 'rollup-plugin-delete'
5d4b2a88 4import { defineConfig } from 'rollup'
72855e92 5
5d4b2a88 6export default defineConfig({
78cdf6bc 7 input: ['./src/main.ts', './src/worker.ts'],
72855e92
JB
8 strictDeprecations: true,
9 output: [
10 {
11 format: 'cjs',
78cdf6bc 12 dir: './dist',
72855e92
JB
13 sourcemap: true,
14 entryFileNames: '[name].cjs',
efaeaba6 15 chunkFileNames: '[name]-[hash].cjs'
72855e92
JB
16 },
17 {
18 format: 'esm',
78cdf6bc 19 dir: './dist',
efaeaba6 20 sourcemap: true
72855e92
JB
21 }
22 ],
23 external: ['node:path', 'node:url', 'poolifier', 'ws'],
24 plugins: [
25 typescript(),
26 del({
78cdf6bc 27 targets: ['./dist/*']
72855e92
JB
28 })
29 ]
5d4b2a88 30})