Files
moodle/lib/editor/tiny/plugins/html/build/rollup.config.mjs
T
Matt Porritt 07e2b61128 MDL-78613 TinyMCE: Add source code formatting and styling
Add code formatting (indenting) as well as code style (tag color)
via a TinyMC plugin. To make it easier to make code edits when
viewing the editor content in source code view.
2023-08-03 13:43:40 +10:00

10 lines
204 B
JavaScript

import {nodeResolve} from "@rollup/plugin-node-resolve"
export default {
input: "./codemirror.mjs",
output: {
file: "../amd/src/codemirror.js",
format: "esm"
},
plugins: [nodeResolve()]
}