UNPKG

prosemirror-mentions-wafrn

Version:

ProseMirror plugin for enabling @mentions in wafrn

21 lines (19 loc) 325 B
import babel from "rollup-plugin-babel"; export default { input: "./src/index.js", output: [ { format: "cjs", file: "dist/index.js" }, { file: "dist/index.es.js", format: "es" } ], sourcemap: true, plugins: [babel()], external(id) { return !/^[\.\/]/.test(id); } };