yjs-backend/rollup.config.mjs
Круглицкий Никита Витальевич 88c2e54ece
All checks were successful
Deploy / build (push) Successful in 2m23s
initial
2025-11-21 08:08:22 +06:00

13 lines
320 B
JavaScript

export default [{
input: ['./src/server.js', './src/utils.js', './src/callback.js'],
external: id => /^(lib0|yjs|@y|ws|lodash\.debounce|http|y-leveldb)/.test(id),
output: [{
dir: 'dist',
format: 'cjs',
sourcemap: true,
entryFileNames: '[name].cjs',
chunkFileNames: '[name]-[hash].cjs'
}]
}
]