mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-09 23:18:02 -05:00
13 lines
301 B
JavaScript
13 lines
301 B
JavaScript
import resolve from "@rollup/plugin-node-resolve";
|
|
import commonjs from "@rollup/plugin-commonjs";
|
|
import json from "@rollup/plugin-json";
|
|
|
|
export default {
|
|
input: "index.js",
|
|
output: {
|
|
file: "bundle.js",
|
|
format: "esm",
|
|
},
|
|
plugins: [resolve(), commonjs(), json({ compact: true })],
|
|
};
|