07e2b61128
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.
10 lines
204 B
JavaScript
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()]
|
|
}
|