UNPKG

@stomp/tcp-wrapper

Version:

TCP wrapper for NodeJS sockets to use STOMP over TCP with @stomp/stompjs and @stomp/rx-stomp

16 lines (14 loc) 335 B
import typescript from '@rollup/plugin-typescript'; import nodeResolve from '@rollup/plugin-node-resolve'; export default [ { input: 'src/index.ts', plugins: [typescript(), nodeResolve()], external: ['net'], output: { file: 'bundles/tcp-wrapper.cjs', format: 'cjs', sourcemap: true, }, }, ];