tiptap/demos/setup/svelte.ts
Ben Asher e97630c639
Require file extensions for imports and exports (#4001)
* Require .js endings

* add extension alias for cypress to resolve ts files with js endings
2023-06-30 21:03:49 +02:00

22 lines
542 B
TypeScript

import 'iframe-resizer/js/iframeResizer.contentWindow'
import './style.scss'
import { debug, splitName } from './helper.js'
export default function init(name: string, source: any) {
// @ts-ignore
window.source = source
document.title = name
const [demoCategory, demoName] = splitName(name)
import(`../src/${demoCategory}/${demoName}/Svelte/index.svelte`)
.then(Module => {
const Component = Module.default
new Component({ target: document.querySelector('#app') }) // eslint-disable-line
debug()
})
}