Estoy usando svelte y svelte-codejar con prismjs y recibo este error Uncaught TypeError: ctx[1] is not a constructor Aquí está mi código
<script context="module"> import Prism from "prismjs" const highlight = (code, syntax) => Prism.highlight(code, Prism.languages[syntax], syntax); </script> <script> import "prismjs/themes/prism-tomorrow.css"; import {getContext} from "svelte"; import {DEFAULT_CODE_SAMPLE, DEFAULT_CODE_SYNTAX} from "./_sample"; const store = getContext("CodeJar"); const options = getContext("options"); const CodeJar = $store; </script> cualquier ayuda sería excelente. También obtengo un Uncaught TypeError: $options is undefined si se agrega esta línea $: ({withLineNumbers = false} = $options);