TipTap with ESM module

Thanks Jon.

Could you share an example of this?

I’m assuming I need to convert to require given this statement by @patrick

I’m starting with this vendor provided example:

import { Editor } from '@tiptap/core'
import StarterKit from '@tiptap/starter-kit'

new Editor({
  element: document.querySelector('.element'),
  extensions: [
    StarterKit,
  ],
  content: '<p>Hello World!</p>',
})

And would like to get that working in an AC extension.